public enum GrpTargetGender extends Enum<GrpTargetGender>
Java class for GrpTargetGender.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="GrpTargetGender">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="UNKNOWN"/>
<enumeration value="MALE"/>
<enumeration value="FEMALE"/>
<enumeration value="BOTH"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BOTH
Indicates that the GRP target gender is both male and female.
|
FEMALE
Indicates that the GRP target gender is Female.
|
MALE
Indicates that the GRP target gender is Male.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static GrpTargetGender |
fromValue(String v) |
String |
value() |
static GrpTargetGender |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GrpTargetGender[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GrpTargetGender UNKNOWN
public static final GrpTargetGender MALE
public static final GrpTargetGender FEMALE
public static final GrpTargetGender BOTH
public static GrpTargetGender[] values()
for (GrpTargetGender c : GrpTargetGender.values()) System.out.println(c);
public static GrpTargetGender 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 GrpTargetGender fromValue(String v)
Copyright © 2018. All Rights Reserved.