public enum InteractiveMatchMode extends Enum<InteractiveMatchMode> implements MatchMode
Enum Constant and Description |
---|
CLOSE
most restrictive of how matching is done for user input
|
RELAXED
least restrictive of how matching is done for user input
|
STANDARD
Default match mode
|
Modifier and Type | Method and Description |
---|---|
static InteractiveMatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InteractiveMatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteractiveMatchMode CLOSE
public static final InteractiveMatchMode RELAXED
public static final InteractiveMatchMode STANDARD
public static InteractiveMatchMode[] values()
for (InteractiveMatchMode c : InteractiveMatchMode.values()) System.out.println(c);
public static InteractiveMatchMode 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 © 2024. All rights reserved.