public static enum SimilarityMatrixToolOptions.Mode extends Enum<SimilarityMatrixToolOptions.Mode> implements CmdLineOptionsProvider
Enum Constant and Description |
---|
BINARIZE |
CONNECTED_COMPS |
DENSEST_SUBGRAPH |
MDS |
PRETTY_PRINT |
Modifier and Type | Method and Description |
---|---|
static SimilarityMatrixToolOptions.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SimilarityMatrixToolOptions.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
getOptions
public static final SimilarityMatrixToolOptions.Mode PRETTY_PRINT
public static final SimilarityMatrixToolOptions.Mode BINARIZE
public static final SimilarityMatrixToolOptions.Mode DENSEST_SUBGRAPH
public static final SimilarityMatrixToolOptions.Mode CONNECTED_COMPS
public static final SimilarityMatrixToolOptions.Mode MDS
public static SimilarityMatrixToolOptions.Mode[] values()
for (SimilarityMatrixToolOptions.Mode c : SimilarityMatrixToolOptions.Mode.values()) System.out.println(c);
public static SimilarityMatrixToolOptions.Mode 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 null