public static enum SCW.Mode extends Enum<SCW.Mode>
Enum Constant and Description |
---|
CW
The standard Confidence Weighted algorithm
|
SCWI
SCW-I which is strongly related to PA-I
|
SCWII
SCW-II, which is strongly related to PA-II
|
Modifier and Type | Method and Description |
---|---|
static SCW.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SCW.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCW.Mode CW
public static final SCW.Mode SCWI
public static final SCW.Mode SCWII
public static SCW.Mode[] values()
for (SCW.Mode c : SCW.Mode.values()) System.out.println(c);
public static SCW.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 nullCopyright © 2017. All rights reserved.