public enum Gender extends Enum<Gender>
Modifier and Type | Method and Description |
---|---|
static Gender |
getEnum(String startsWith)
Returns the Gender that starts with the parameter.
|
String |
toString()
Returns the gender name, in lower case.
|
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 MALE
public static final Gender FEMALE
public static final Gender OTHER
public static final Gender UNKNOWN
public static Gender[] values()
for (Gender c : Gender.values()) System.out.println(c);
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 getEnum(String startsWith)
startsWith
- the String that the Gender should start withIllegalArgumentException
- If no Gender starts with the parameterCopyright © 2015 Joseph Hendrix