public static enum Seq.Strandedness extends java.lang.Enum<Seq.Strandedness>
Enum Constant and Description |
---|
DOUBLE
Double stranded sequence
(represented as 'D')
|
MIXED
Mixed stranded sequence
(represented as 'M')
|
SINGLE
Single stranded sequence
|
Modifier and Type | Method and Description |
---|---|
static Seq.Strandedness |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Seq.Strandedness[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Seq.Strandedness SINGLE
public static final Seq.Strandedness DOUBLE
public static final Seq.Strandedness MIXED
public static Seq.Strandedness[] values()
for (Seq.Strandedness c : Seq.Strandedness.values()) System.out.println(c);
public static Seq.Strandedness 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.