public enum DataConversion extends Enum<DataConversion>
Enum Constant and Description |
---|
JACKSON_DATABIND_ANNOTATIONS
Generated code will contain annotations suitable for conversion to/from json using the 3rd party jackson processor compatible with java 6+.
|
JACKSON_DATABIND_ANNOTATIONS_WITH_JDK8_PARAMETER_NAMES
Generated code will contain annotations suitable for conversion to/from json using the 3rd party jackson processor compatible with java 8+ when using the -parameters option.
|
NONE
Generated code will not contain any annotations suitable for json or xml conversions.
|
Modifier and Type | Method and Description |
---|---|
static DataConversion |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataConversion[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataConversion NONE
public static final DataConversion JACKSON_DATABIND_ANNOTATIONS
public static final DataConversion JACKSON_DATABIND_ANNOTATIONS_WITH_JDK8_PARAMETER_NAMES
public static DataConversion[] values()
for (DataConversion c : DataConversion.values()) System.out.println(c);
public static DataConversion 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 null
Version 2.0.0 generated on 2014-11-22 at 09:45 - (C) 41concepts Aps. Refer to project homepage valjogen.41concepts.com for more information.