Package picard.pedigree
Enum Sex
- java.lang.Object
-
- java.lang.Enum<Sex>
-
- picard.pedigree.Sex
-
- All Implemented Interfaces:
Serializable
,Comparable<Sex>
public enum Sex extends Enum<Sex>
Represents the sex of an individual.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static Sex
fromCode(int code)
Decodes the Sex from a numeric code.int
toCode()
Returns the code used to encode this sex in a ped/fam file.static Sex
valueOf(String name)
Returns the enum constant of this type with the specified name.static Sex[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Method Detail
-
values
public static Sex[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Sex c : Sex.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Sex valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toCode
public int toCode()
Returns the code used to encode this sex in a ped/fam file.
-
fromCode
public static Sex fromCode(int code)
Decodes the Sex from a numeric code. Note that any value other than 1 or 2 will return Unknown.
-
-