public enum KeyMatchStyle extends Enum<KeyMatchStyle>
| Enum Constant and Description |
|---|
MATCHING_KEY |
SUB_SET |
| Modifier and Type | Field and Description |
|---|---|
static KeyMatchStyle |
defaultValue |
| Modifier and Type | Method and Description |
|---|---|
static KeyMatchStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KeyMatchStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyMatchStyle SUB_SET
public static final KeyMatchStyle MATCHING_KEY
public static KeyMatchStyle defaultValue
public static KeyMatchStyle[] values()
for (KeyMatchStyle c : KeyMatchStyle.values()) System.out.println(c);
public static KeyMatchStyle 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. All rights reserved.