public enum FuzzyType extends Enum<FuzzyType>
| Enum Constant and Description |
|---|
NONE |
NUMBER_OF_LETTERS |
PERCENTAGE |
| Modifier and Type | Method and Description |
|---|---|
static FuzzyType |
fromValue(String input) |
String |
getValue() |
String |
toString() |
static FuzzyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FuzzyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FuzzyType NONE
public static final FuzzyType PERCENTAGE
public static final FuzzyType NUMBER_OF_LETTERS
public static FuzzyType[] values()
for (FuzzyType c : FuzzyType.values()) System.out.println(c);
public static FuzzyType 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 getValue()
Copyright © 2022. All rights reserved.