public enum MappingConsts extends Enum<MappingConsts>
| Enum Constant and Description |
|---|
COLUMNS |
CONST_VALUE |
FIELD_NAME |
ORDINAL |
PATH |
STORAGE_DATA_TYPE |
TRANSFORMATION_METHOD |
| Modifier and Type | Method and Description |
|---|---|
static MappingConsts |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingConsts[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingConsts PATH
public static final MappingConsts TRANSFORMATION_METHOD
public static final MappingConsts ORDINAL
public static final MappingConsts CONST_VALUE
public static final MappingConsts FIELD_NAME
public static final MappingConsts COLUMNS
public static final MappingConsts STORAGE_DATA_TYPE
public static MappingConsts[] values()
for (MappingConsts c : MappingConsts.values()) System.out.println(c);
public static MappingConsts 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 © 2024. All rights reserved.