public enum MatchKind extends Enum<MatchKind>
| Enum Constant and Description |
|---|
MKATLEAST
Matches subsets.
|
MKEXACT
An exact match.
|
MKONEOF
Matches if at least one did match.
|
| Modifier and Type | Method and Description |
|---|---|
static MatchKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MatchKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MatchKind MKEXACT
public static final MatchKind MKONEOF
public static final MatchKind MKATLEAST
public static MatchKind[] values()
for (MatchKind c : MatchKind.values()) System.out.println(c);
public static MatchKind 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 © 2020 Hyland Software Germany GmbH. All rights reserved.