public enum Strand extends Enum<Strand>
Modifier and Type | Method and Description |
---|---|
int |
getNumericRepresentation() |
Strand |
getReverse() |
String |
getStringRepresentation() |
static Strand |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Strand[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static Strand[] values()
for (Strand c : Strand.values()) System.out.println(c);
public static Strand valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getNumericRepresentation()
public String getStringRepresentation()
public Strand getReverse()
Copyright © 2000–2019 BioJava. All rights reserved.