|
BioLegato 0.5.7 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Sequence.Type>
org.biolegato.core.data.sequence.Sequence.Type
public static enum Sequence.Type
This enum is used for typing/storing sequence types. This method of storage ensures proper type casting. Feel free to add more types as necessary.
Enum Constant Summary | |
---|---|
DNA
Sequence type DNA |
|
MASK
Sequence type colour mask |
|
PROTEIN
Sequence type protein |
|
RNA
Sequence type RNA |
|
TEXT
Sequence type is text (represented as '"') |
Method Summary | |
---|---|
static Sequence.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Sequence.Type[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Sequence.Type DNA
public static final Sequence.Type RNA
public static final Sequence.Type PROTEIN
public static final Sequence.Type MASK
public static final Sequence.Type TEXT
Method Detail |
---|
public static final Sequence.Type[] values()
for(Sequence.Type c : Sequence.Type.values()) System.out.println(c);
public static Sequence.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 name
|
BioLegato 0.5.7 | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |