protected static enum OtherName.OtherNameField extends Enum<OtherName.OtherNameField> implements EnumType
| Modifier and Type | Method and Description |
|---|---|
String |
getName() |
int |
getValue() |
static OtherName.OtherNameField |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OtherName.OtherNameField[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OtherName.OtherNameField TYPE_ID
public static final OtherName.OtherNameField VALUE
public static OtherName.OtherNameField[] values()
for (OtherName.OtherNameField c : OtherName.OtherNameField.values()) System.out.println(c);
public static OtherName.OtherNameField 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 © 2014–2017 The Apache Software Foundation. All rights reserved.