public enum ObjectMapperType extends Enum<ObjectMapperType>
Enum Constant and Description |
---|
GSON |
JACKSON_1 |
JACKSON_2 |
JAXB |
JOHNZON |
Modifier and Type | Method and Description |
---|---|
static ObjectMapperType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectMapperType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectMapperType JACKSON_2
public static final ObjectMapperType JACKSON_1
public static final ObjectMapperType GSON
public static final ObjectMapperType JAXB
public static final ObjectMapperType JOHNZON
public static ObjectMapperType[] values()
for (ObjectMapperType c : ObjectMapperType.values()) System.out.println(c);
public static ObjectMapperType 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 © 2010–2019. All rights reserved.