@Deprecated public static enum GenderInfo.Gender extends Enum<GenderInfo.Gender>
Enum Constant and Description |
---|
FEMALE
Deprecated.
This API is ICU internal only.
|
MALE
Deprecated.
This API is ICU internal only.
|
OTHER
Deprecated.
This API is ICU internal only.
|
Modifier and Type | Method and Description |
---|---|
static GenderInfo.Gender |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static GenderInfo.Gender[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Deprecated public static final GenderInfo.Gender MALE
@Deprecated public static final GenderInfo.Gender FEMALE
@Deprecated public static final GenderInfo.Gender OTHER
public static GenderInfo.Gender[] values()
for (GenderInfo.Gender c : GenderInfo.Gender.values()) System.out.println(c);
public static GenderInfo.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 nullCopyright © 2016 Unicode, Inc. and others.