public static enum Mapping.Create extends Enum<Mapping.Create>
| Enum Constant and Description |
|---|
CONSTRUCTOR |
NONE |
SET_VALUE |
STATIC_FROM |
| Modifier and Type | Method and Description |
|---|---|
static Mapping.Create |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mapping.Create[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mapping.Create CONSTRUCTOR
public static final Mapping.Create SET_VALUE
public static final Mapping.Create STATIC_FROM
public static final Mapping.Create NONE
public static Mapping.Create[] values()
for (Mapping.Create c : Mapping.Create.values()) System.out.println(c);
public static Mapping.Create 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 © 2018–2021. All rights reserved.