java.io.Serializable, java.lang.Comparable<GenderInfo.Gender>@Deprecated public static enum GenderInfo.Gender extends java.lang.Enum<GenderInfo.Gender>
| Enum Constant | 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 | Description |
|---|---|---|
static GenderInfo.Gender |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullCopyright ? 2016 Unicode, Inc. and others.