Package net.imglib2.type.label
Enum BasePairBitType.Base
- java.lang.Object
-
- java.lang.Enum<BasePairBitType.Base>
-
- net.imglib2.type.label.BasePairBitType.Base
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BasePairBitType.Base>
- Enclosing class:
- BasePairBitType
public static enum BasePairBitType.Base extends java.lang.Enum<BasePairBitType.Base>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BasePairBitType.Base
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BasePairBitType.Base[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
gap
public static final BasePairBitType.Base gap
-
N
public static final BasePairBitType.Base N
-
A
public static final BasePairBitType.Base A
-
T
public static final BasePairBitType.Base T
-
G
public static final BasePairBitType.Base G
-
C
public static final BasePairBitType.Base C
-
U
public static final BasePairBitType.Base U
-
-
Method Detail
-
values
public static BasePairBitType.Base[] 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 (BasePairBitType.Base c : BasePairBitType.Base.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BasePairBitType.Base 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
-
-