public enum OwnershipChange extends java.lang.Enum<OwnershipChange>
Enum Constant and Description |
---|
Acquire
Acquire the call
|
NA
Invalid - information not available
|
Relieve
Relieve the call
|
Modifier and Type | Method and Description |
---|---|
static OwnershipChange |
fromInt(int i) |
static OwnershipChange |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OwnershipChange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OwnershipChange NA
public static final OwnershipChange Relieve
public static final OwnershipChange Acquire
public static OwnershipChange[] values()
for (OwnershipChange c : OwnershipChange.values()) System.out.println(c);
public static OwnershipChange valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static OwnershipChange fromInt(int i)