public enum AliasAction extends java.lang.Enum<AliasAction>
Enum Constant and Description |
---|
LINK
Link an alias.
|
UNLINK
Unlink an alias.
|
Modifier and Type | Method and Description |
---|---|
byte |
getValue()
Returns enum value.
|
static AliasAction |
rawValueOf(byte value)
Gets the alias action from raw value.
|
static AliasAction |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AliasAction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AliasAction LINK
public static final AliasAction UNLINK
public static AliasAction[] values()
for (AliasAction c : AliasAction.values()) System.out.println(c);
public static AliasAction 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 AliasAction rawValueOf(byte value)
value
- Raw value.public byte getValue()