public static enum RequestPrimitiveDTO.Operation extends Enum<RequestPrimitiveDTO.Operation>
Enum Constant and Description |
---|
Create
Create
|
Delete
Delete
|
Notify
Notify
|
Retrieve
Retrieve
|
Update
Update
|
Modifier and Type | Method and Description |
---|---|
int |
getValue()
get assigned integer value
|
static RequestPrimitiveDTO.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestPrimitiveDTO.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestPrimitiveDTO.Operation Create
public static final RequestPrimitiveDTO.Operation Retrieve
public static final RequestPrimitiveDTO.Operation Update
public static final RequestPrimitiveDTO.Operation Delete
public static final RequestPrimitiveDTO.Operation Notify
public static RequestPrimitiveDTO.Operation[] values()
for (RequestPrimitiveDTO.Operation c : RequestPrimitiveDTO.Operation.values()) System.out.println(c);
public static RequestPrimitiveDTO.Operation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
Copyright © Contributors to the Eclipse Foundation Licensed under the Eclipse Foundation Specification License – v1.0