public enum RegistryOperation extends java.lang.Enum<RegistryOperation>
Enum Constant and Description |
---|
CREATE
create
|
DELETE
delete
|
MODIFY
modify
|
UNEXPECTED_VALUE
For RegistryOperation values that were not expected from the service
|
UNKNOWN
unknown
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
Modifier and Type | Method and Description |
---|---|
static RegistryOperation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RegistryOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RegistryOperation UNKNOWN
public static final RegistryOperation CREATE
public static final RegistryOperation MODIFY
public static final RegistryOperation DELETE
public static final RegistryOperation UNKNOWN_FUTURE_VALUE
public static final RegistryOperation UNEXPECTED_VALUE
public static RegistryOperation[] values()
for (RegistryOperation c : RegistryOperation.values()) System.out.println(c);
public static RegistryOperation 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 null