Package dev.pcvolkmer.mv64e.model
Enum Chromosome
- java.lang.Object
-
- java.lang.Enum<Chromosome>
-
- dev.pcvolkmer.mv64e.model.Chromosome
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<Chromosome>
public enum Chromosome extends java.lang.Enum<Chromosome>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ChromosomefromValue(java.lang.String value)java.lang.StringgetValue()java.lang.StringtoString()static ChromosomevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Chromosome[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHR5
public static final Chromosome CHR5
-
CHR6
public static final Chromosome CHR6
-
CHR8
public static final Chromosome CHR8
-
CHR1
public static final Chromosome CHR1
-
CHR_X
public static final Chromosome CHR_X
-
CHR12
public static final Chromosome CHR12
-
CHR11
public static final Chromosome CHR11
-
CHR17
public static final Chromosome CHR17
-
CHR21
public static final Chromosome CHR21
-
CHR19
public static final Chromosome CHR19
-
CHR14
public static final Chromosome CHR14
-
CHR9
public static final Chromosome CHR9
-
CHR4
public static final Chromosome CHR4
-
CHR_MT
public static final Chromosome CHR_MT
-
CHR2
public static final Chromosome CHR2
-
CHR_Y
public static final Chromosome CHR_Y
-
CHR3
public static final Chromosome CHR3
-
CHR7
public static final Chromosome CHR7
-
CHR13
public static final Chromosome CHR13
-
CHR10
public static final Chromosome CHR10
-
CHR15
public static final Chromosome CHR15
-
CHR22
public static final Chromosome CHR22
-
CHR18
public static final Chromosome CHR18
-
CHR16
public static final Chromosome CHR16
-
CHR20
public static final Chromosome CHR20
-
-
Method Detail
-
values
public static Chromosome[] 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 (Chromosome c : Chromosome.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Chromosome valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getValue
public java.lang.String getValue()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Enum<Chromosome>
-
fromValue
public static Chromosome fromValue(java.lang.String value)
-
-