public enum EnumCV_Sex extends java.lang.Enum<EnumCV_Sex>
| Enum Constant and Description |
|---|
AMBIGUOUS_SEX_121104 |
FEMALE_CHANGED_TO_MALE_FC |
FEMALE_F |
FEMALE_PSEUDOHERMAPHRODITE_FP |
HERMAPHRODITE_H |
MALE_CHANGED_TO_FEMALE_MC |
MALE_M |
MALE_PSEUDOHERMAPHRODITE_MP |
OTHER_SEX_121102 |
UNDETERMINED_SEX_121103 |
UNKNOWN_SEX_U |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_Sex |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_Sex[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_Sex MALE_M
public static final EnumCV_Sex FEMALE_F
public static final EnumCV_Sex UNKNOWN_SEX_U
public static final EnumCV_Sex MALE_PSEUDOHERMAPHRODITE_MP
public static final EnumCV_Sex FEMALE_PSEUDOHERMAPHRODITE_FP
public static final EnumCV_Sex HERMAPHRODITE_H
public static final EnumCV_Sex MALE_CHANGED_TO_FEMALE_MC
public static final EnumCV_Sex FEMALE_CHANGED_TO_MALE_FC
public static final EnumCV_Sex AMBIGUOUS_SEX_121104
public static final EnumCV_Sex OTHER_SEX_121102
public static final EnumCV_Sex UNDETERMINED_SEX_121103
public static EnumCV_Sex[] values()
for (EnumCV_Sex c : EnumCV_Sex.values()) System.out.println(c);
public static EnumCV_Sex 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 nullpublic java.lang.String getValue()