Package org.biojava.nbio.core.sequence
Enum SequenceOptimizationHints.SequenceCollection
- java.lang.Object
-
- java.lang.Enum<SequenceOptimizationHints.SequenceCollection>
-
- org.biojava.nbio.core.sequence.SequenceOptimizationHints.SequenceCollection
-
- All Implemented Interfaces:
Serializable
,Comparable<SequenceOptimizationHints.SequenceCollection>
- Enclosing class:
- SequenceOptimizationHints
public static enum SequenceOptimizationHints.SequenceCollection extends Enum<SequenceOptimizationHints.SequenceCollection>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALL_SEQUENCES
MINIMINAL_SEQUENCES
VARIABLE_SEQUENCES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SequenceOptimizationHints.SequenceCollection
valueOf(String name)
Returns the enum constant of this type with the specified name.static SequenceOptimizationHints.SequenceCollection[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL_SEQUENCES
public static final SequenceOptimizationHints.SequenceCollection ALL_SEQUENCES
-
VARIABLE_SEQUENCES
public static final SequenceOptimizationHints.SequenceCollection VARIABLE_SEQUENCES
-
MINIMINAL_SEQUENCES
public static final SequenceOptimizationHints.SequenceCollection MINIMINAL_SEQUENCES
-
-
Method Detail
-
values
public static SequenceOptimizationHints.SequenceCollection[] 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 (SequenceOptimizationHints.SequenceCollection c : SequenceOptimizationHints.SequenceCollection.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SequenceOptimizationHints.SequenceCollection valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-