org.virtualbox_7_2
Enum TrackedObjectState
java.lang.Object
java.lang.Enum<TrackedObjectState>
org.virtualbox_7_2.TrackedObjectState
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<TrackedObjectState>
public enum TrackedObjectState
- extends java.lang.Enum<TrackedObjectState>
Tracked Object State.
Interface ID: {A5EE031D-ABA8-4A7F-887A-9A1F12E7CC6C}
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
None
public static final TrackedObjectState None
Alive
public static final TrackedObjectState Alive
Deleted
public static final TrackedObjectState Deleted
Invalid
public static final TrackedObjectState Invalid
values
public static TrackedObjectState[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (TrackedObjectState c : TrackedObjectState.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static TrackedObjectState valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null
value
public int value()
fromValue
public static TrackedObjectState fromValue(long v)
fromValue
public static TrackedObjectState fromValue(java.lang.String v)