public static enum JavaGenerationConfig.DefaultNumberFormat extends Enum<JavaGenerationConfig.DefaultNumberFormat>
| Enum Constant and Description |
|---|
BIGDECIMAL |
DOUBLE |
| Modifier and Type | Method and Description |
|---|---|
static JavaGenerationConfig.DefaultNumberFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JavaGenerationConfig.DefaultNumberFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaGenerationConfig.DefaultNumberFormat DOUBLE
public static final JavaGenerationConfig.DefaultNumberFormat BIGDECIMAL
public static JavaGenerationConfig.DefaultNumberFormat[] values()
for (JavaGenerationConfig.DefaultNumberFormat c : JavaGenerationConfig.DefaultNumberFormat.values()) System.out.println(c);
public static JavaGenerationConfig.DefaultNumberFormat 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 © 2016 OnPositive. All rights reserved.