Enum IProfeatProperties.TRANSITION
- java.lang.Object
-
- java.lang.Enum<IProfeatProperties.TRANSITION>
-
- org.biojava.nbio.aaproperties.profeat.IProfeatProperties.TRANSITION
-
- All Implemented Interfaces:
Serializable
,Comparable<IProfeatProperties.TRANSITION>
- Enclosing interface:
- IProfeatProperties
public static enum IProfeatProperties.TRANSITION extends Enum<IProfeatProperties.TRANSITION>
Enumeration of the transition between groupA and groupB
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BETWEEN_11
BETWEEN_12
BETWEEN_13
BETWEEN_22
BETWEEN_23
BETWEEN_33
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IProfeatProperties.TRANSITION
valueOf(String name)
Returns the enum constant of this type with the specified name.static IProfeatProperties.TRANSITION[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BETWEEN_11
public static final IProfeatProperties.TRANSITION BETWEEN_11
-
BETWEEN_22
public static final IProfeatProperties.TRANSITION BETWEEN_22
-
BETWEEN_33
public static final IProfeatProperties.TRANSITION BETWEEN_33
-
BETWEEN_12
public static final IProfeatProperties.TRANSITION BETWEEN_12
-
BETWEEN_13
public static final IProfeatProperties.TRANSITION BETWEEN_13
-
BETWEEN_23
public static final IProfeatProperties.TRANSITION BETWEEN_23
-
-
Method Detail
-
values
public static IProfeatProperties.TRANSITION[] 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 (IProfeatProperties.TRANSITION c : IProfeatProperties.TRANSITION.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IProfeatProperties.TRANSITION 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
-
-