public enum AlgorithmVersion extends java.lang.Enum<AlgorithmVersion>
| Modifier and Type | Method and Description |
|---|---|
java.lang.Class<? extends SpecialSettings> |
getSettingsClass() |
java.lang.Class<? extends SpecialSettingsPanel> |
getSettingsPanelClass() |
java.lang.Class<? extends LogConsumer> |
getVersionClass() |
static AlgorithmVersion |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmVersion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmVersion Standard
public static final AlgorithmVersion Improved
public static AlgorithmVersion[] values()
for (AlgorithmVersion c : AlgorithmVersion.values()) System.out.println(c);
public static AlgorithmVersion 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 java.lang.Class<? extends LogConsumer> getVersionClass()
public java.lang.Class<? extends SpecialSettings> getSettingsClass()
public java.lang.Class<? extends SpecialSettingsPanel> getSettingsPanelClass()