public static enum ObjectExecution.OBJECT_TYPE extends Enum<ObjectExecution.OBJECT_TYPE>
| Enum Constant and Description |
|---|
ARRAY |
COLLECTION |
MAP |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static ObjectExecution.OBJECT_TYPE |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectExecution.OBJECT_TYPE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectExecution.OBJECT_TYPE COLLECTION
public static final ObjectExecution.OBJECT_TYPE ARRAY
public static final ObjectExecution.OBJECT_TYPE MAP
public static final ObjectExecution.OBJECT_TYPE VALUE
public static ObjectExecution.OBJECT_TYPE[] values()
for (ObjectExecution.OBJECT_TYPE c : ObjectExecution.OBJECT_TYPE.values()) System.out.println(c);
public static ObjectExecution.OBJECT_TYPE 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 nullCopyright © 2017 JBoss by Red Hat. All rights reserved.