public enum ObjectMapperProvider extends Enum<ObjectMapperProvider>
| Enum Constant and Description |
|---|
INSTANCE |
| Modifier and Type | Method and Description |
|---|---|
static com.fasterxml.jackson.databind.ObjectMapper |
getInstance() |
static ObjectMapperProvider |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectMapperProvider[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectMapperProvider INSTANCE
public static ObjectMapperProvider[] values()
for (ObjectMapperProvider c : ObjectMapperProvider.values()) System.out.println(c);
public static ObjectMapperProvider 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 static com.fasterxml.jackson.databind.ObjectMapper getInstance()
Copyright © 2018. All rights reserved.