public static enum Configuration.PropertyKey extends Enum<Configuration.PropertyKey>
Enum Constant and Description |
---|
JACKSON_OBJECT_MAPPER |
JSON_SERIALIZER |
PRINT_BANNER |
Modifier and Type | Method and Description |
---|---|
String |
getKey() |
static Configuration.PropertyKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Configuration.PropertyKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Configuration.PropertyKey JACKSON_OBJECT_MAPPER
public static final Configuration.PropertyKey JSON_SERIALIZER
public static final Configuration.PropertyKey PRINT_BANNER
public static Configuration.PropertyKey[] values()
for (Configuration.PropertyKey c : Configuration.PropertyKey.values()) System.out.println(c);
public static Configuration.PropertyKey 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 nullpublic String getKey()
Copyright © 2020. All rights reserved.