public enum EnumCM_FamilyMember extends java.lang.Enum<EnumCM_FamilyMember>
| Enum Constant and Description |
|---|
AUNT |
FEMALE_FIRST_COUSIN |
HALF_BROTHER |
HALF_SISTER |
MALE_FIRST_COUSIN |
NATURAL_BROTHER |
NATURAL_DAUGHTER |
NATURAL_FATHER |
NATURAL_GRAND_FATHER |
NATURAL_GRAND_MOTHER |
NATURAL_MOTHER |
NATURAL_SISTER |
NATURAL_SON |
UNCLE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_FamilyMember |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_FamilyMember[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_FamilyMember NATURAL_MOTHER
public static final EnumCM_FamilyMember NATURAL_FATHER
public static final EnumCM_FamilyMember NATURAL_SISTER
public static final EnumCM_FamilyMember NATURAL_BROTHER
public static final EnumCM_FamilyMember AUNT
public static final EnumCM_FamilyMember UNCLE
public static final EnumCM_FamilyMember HALF_SISTER
public static final EnumCM_FamilyMember HALF_BROTHER
public static final EnumCM_FamilyMember NATURAL_GRAND_MOTHER
public static final EnumCM_FamilyMember NATURAL_GRAND_FATHER
public static final EnumCM_FamilyMember NATURAL_DAUGHTER
public static final EnumCM_FamilyMember NATURAL_SON
public static final EnumCM_FamilyMember FEMALE_FIRST_COUSIN
public static final EnumCM_FamilyMember MALE_FIRST_COUSIN
public static EnumCM_FamilyMember[] values()
for (EnumCM_FamilyMember c : EnumCM_FamilyMember.values()) System.out.println(c);
public static EnumCM_FamilyMember 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()