public enum MatchMode extends Enum<MatchMode>
| Enum Constant and Description |
|---|
Exact |
In |
NotIn |
Range |
StartWith |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static MatchMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchMode Unknown
public static final MatchMode Exact
public static final MatchMode StartWith
public static final MatchMode Range
public static final MatchMode In
public static final MatchMode NotIn
public static MatchMode[] values()
for (MatchMode c : MatchMode.values()) System.out.println(c);
public static MatchMode 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 © 2023. All Rights Reserved.