Serializable, Comparable<AttributeLevel>public enum AttributeLevel extends Enum<AttributeLevel>
| Enum Constant | Description |
|---|---|
ADVANCED |
Deep knowledge of the algorithm internals required for successful tuning.
|
BASIC |
Attribute value easy to tune, easy to understand for a casual user.
|
MEDIUM |
Attribute value easy to tune for a user familiar with text processing.
|
| Modifier and Type | Method | Description |
|---|---|---|
String |
toString() |
|
static AttributeLevel |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static AttributeLevel[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeLevel BASIC
public static final AttributeLevel MEDIUM
public static final AttributeLevel ADVANCED
public static AttributeLevel[] values()
for (AttributeLevel c : AttributeLevel.values()) System.out.println(c);
public static AttributeLevel 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 nullpublic String toString()
toString in class Enum<AttributeLevel>Copyright © 2018 Carrot2.org. All rights reserved.