public static enum ModelObject.ModelObjectType extends Enum<ModelObject.ModelObjectType>
| Enum Constant and Description |
|---|
ATOMIC
Atomic node.
|
NON_ATOMIC
Non atomic node.
|
| Modifier and Type | Method and Description |
|---|---|
static ModelObject.ModelObjectType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelObject.ModelObjectType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelObject.ModelObjectType ATOMIC
public static final ModelObject.ModelObjectType NON_ATOMIC
public static ModelObject.ModelObjectType[] values()
for (ModelObject.ModelObjectType c : ModelObject.ModelObjectType.values()) System.out.println(c);
public static ModelObject.ModelObjectType 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 © 2018. All rights reserved.