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