public enum Algorithm extends java.lang.Enum<Algorithm> implements java.lang.Comparable<Algorithm>
Enum Constant and Description |
---|
CDKMCS
CDK UIT MCS.
|
DEFAULT
Default SMSD algorithm.
|
MCSPlus
MCS Plus algorithm.
|
VFLibMCS
VF-Koch-McGregor Lib based MCS algorithm.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
description()
Returns short description of the algorithm.
|
int |
type()
Returns type of algorithm.
|
static Algorithm |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Algorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Algorithm DEFAULT
public static final Algorithm MCSPlus
public static final Algorithm VFLibMCS
public static final Algorithm CDKMCS
public static Algorithm[] values()
for (Algorithm c : Algorithm.values()) System.out.println(c);
public static Algorithm 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 nullpublic int type()
public java.lang.String description()