public enum Gender extends Enum<Gender>
Enum Constant and Description |
---|
FEMALE
female
|
MALE
male
|
OTHER
Other than female or male
|
UNKNOWN
Gender was provided with an unknown value
|
Modifier and Type | Method and Description |
---|---|
static Gender |
getGender(String value) |
String |
getValue() |
static Gender |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Gender[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Gender FEMALE
public static final Gender MALE
public static final Gender OTHER
public static final Gender UNKNOWN
public String getValue()
public static Gender 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 nullpublic static Gender[] values()
for (Gender c : Gender.values()) System.out.println(c);