public static enum IdCard.Sex extends Enum<IdCard.Sex>
| Modifier and Type | Method and Description |
|---|---|
int |
getSex() |
static IdCard.Sex |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IdCard.Sex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IdCard.Sex RANDOM
public static final IdCard.Sex FEMALE
public static final IdCard.Sex MALE
public static IdCard.Sex[] values()
for (IdCard.Sex c : IdCard.Sex.values()) System.out.println(c);
public static IdCard.Sex 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 int getSex()
Copyright © 2020. All rights reserved.