public static enum SimilarityCalculatorFactory.Representation extends java.lang.Enum<SimilarityCalculatorFactory.Representation>
Enum Constant and Description |
---|
ALIGNMENT |
FLOAT_ARRAY |
INTEGER_ARRAY |
INTEGER_ARRAY_BIT_REPR |
SCALAR |
Modifier and Type | Method and Description |
---|---|
static SimilarityCalculatorFactory.Representation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SimilarityCalculatorFactory.Representation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SimilarityCalculatorFactory.Representation SCALAR
public static final SimilarityCalculatorFactory.Representation INTEGER_ARRAY
public static final SimilarityCalculatorFactory.Representation INTEGER_ARRAY_BIT_REPR
public static final SimilarityCalculatorFactory.Representation FLOAT_ARRAY
public static final SimilarityCalculatorFactory.Representation ALIGNMENT
public static SimilarityCalculatorFactory.Representation[] values()
for (SimilarityCalculatorFactory.Representation c : SimilarityCalculatorFactory.Representation.values()) System.out.println(c);
public static SimilarityCalculatorFactory.Representation 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 null