public enum MappingOperator extends java.lang.Enum<MappingOperator> implements Operator
| Enum Constant and Description |
|---|
_else |
and |
conditional_mappings |
fields |
fields_with_tag |
map |
mappings |
then |
to |
using |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
readable()
Returns the human readable version of this object.
|
ReturnType |
returnType() |
static MappingOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MappingOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MappingOperator fields
public static final MappingOperator and
public static final MappingOperator then
public static final MappingOperator _else
public static final MappingOperator map
public static final MappingOperator fields_with_tag
public static final MappingOperator mappings
public static final MappingOperator conditional_mappings
public static final MappingOperator to
public static final MappingOperator using
public static MappingOperator[] values()
for (MappingOperator c : MappingOperator.values()) System.out.println(c);
public static MappingOperator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String readable()
Readablepublic ReturnType returnType()
returnType in interface Operator