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