public enum MappingType extends Enum<MappingType>
| Enum Constant and Description |
|---|
AGGREGATION
Specifies the mapping type used when two or more source fields are aggregated to one target field.
|
DIRECT
Specifies the mapping type used when the mapping between the source and target fields is directly executed; the target value is equal to the source value.
|
SPLIT
Specifies the mapping type used when the source field is split into two or more target fields.
|
UNKNOWN
Specifies an unidentified type.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static MappingType |
parse(String value) |
static MappingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingType AGGREGATION
public static final MappingType DIRECT
public static final MappingType SPLIT
public static final MappingType UNKNOWN
public static MappingType[] values()
for (MappingType c : MappingType.values()) System.out.println(c);
public static MappingType 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 nullpublic static MappingType parse(String value)
public String getValue()