public enum EntityPortion extends Enum<EntityPortion>
| Enum Constant and Description |
|---|
CIRCLED_CHARACTER |
ENTIRELY |
FIELD |
LOLLIPOP |
METHOD |
STEREOTYPE |
| Modifier and Type | Method and Description |
|---|---|
static EntityPortion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityPortion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityPortion FIELD
public static final EntityPortion METHOD
public static final EntityPortion CIRCLED_CHARACTER
public static final EntityPortion STEREOTYPE
public static final EntityPortion LOLLIPOP
public static final EntityPortion ENTIRELY
public static EntityPortion[] values()
for (EntityPortion c : EntityPortion.values()) System.out.println(c);
public static EntityPortion 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. All rights reserved.