public static enum Seq.Type extends java.lang.Enum<Seq.Type>
Enum Constant and Description |
---|
DNA
Sequence type DNA
|
MASK
Sequence type colour mask
|
PROTEIN
Sequence type protein
|
RNA
Sequence type RNA
|
TEXT
Sequence type is text
(represented as '"')
|
Modifier and Type | Method and Description |
---|---|
static Seq.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Seq.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Seq.Type DNA
public static final Seq.Type RNA
public static final Seq.Type PROTEIN
public static final Seq.Type MASK
public static final Seq.Type TEXT
public static Seq.Type[] values()
for (Seq.Type c : Seq.Type.values()) System.out.println(c);
public static Seq.Type 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 nullCopyright © 2008-2022 University of Manitoba.