public static enum Id.Parts extends Enum<Id.Parts>
| Modifier and Type | Field and Description |
|---|---|
static EnumSet<Id.Parts> |
ALL |
static EnumSet<Id.Parts> |
INSTANCE_NAME |
| Modifier and Type | Method and Description |
|---|---|
static Id.Parts |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Id.Parts[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Id.Parts PREFIX
public static final Id.Parts NAME
public static final Id.Parts SEQUENCE
public static Id.Parts[] values()
for (Id.Parts c : Id.Parts.values()) System.out.println(c);
public static Id.Parts 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 null