public static enum ObjectTypePolymorphism.Nature extends java.lang.Enum<ObjectTypePolymorphism.Nature>
| Enum Constant and Description |
|---|
COMPOSITION |
INHERITANCE |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static ObjectTypePolymorphism.Nature |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ObjectTypePolymorphism.Nature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectTypePolymorphism.Nature NONE
public static final ObjectTypePolymorphism.Nature COMPOSITION
public static final ObjectTypePolymorphism.Nature INHERITANCE
public static ObjectTypePolymorphism.Nature[] values()
for (ObjectTypePolymorphism.Nature c : ObjectTypePolymorphism.Nature.values()) System.out.println(c);
public static ObjectTypePolymorphism.Nature 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