public enum GenderGenderType extends Enum<GenderGenderType>
Java class for Gender.GenderType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="Gender.GenderType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="GENDER_MALE"/>
<enumeration value="GENDER_FEMALE"/>
<enumeration value="GENDER_UNDETERMINED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
GENDER_FEMALE |
GENDER_MALE |
GENDER_UNDETERMINED |
| Modifier and Type | Method and Description |
|---|---|
static GenderGenderType |
fromValue(String v) |
String |
value() |
static GenderGenderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GenderGenderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GenderGenderType GENDER_MALE
public static final GenderGenderType GENDER_FEMALE
public static final GenderGenderType GENDER_UNDETERMINED
public static GenderGenderType[] values()
for (GenderGenderType c : GenderGenderType.values()) System.out.println(c);
public static GenderGenderType 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 String value()
public static GenderGenderType fromValue(String v)
Copyright © 2023. All rights reserved.