public enum CompositeElementType extends java.lang.Enum<CompositeElementType>
| Enum Constant and Description |
|---|
ADDRESS
Geographical Address
|
AS_IS
String payload copied from request to response without modification
|
BIRTHDATE
Person Birth Date
|
EMAIL
E-mail address
|
NAME
Person Name
|
PASSPORT
Passport Number
|
PHONE
Phone Number
|
VEHICLE
Vehicle type
|
| Modifier and Type | Method and Description |
|---|---|
static CompositeElementType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CompositeElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CompositeElementType AS_IS
public static final CompositeElementType NAME
public static final CompositeElementType ADDRESS
public static final CompositeElementType BIRTHDATE
public static final CompositeElementType PASSPORT
public static final CompositeElementType PHONE
public static final CompositeElementType EMAIL
public static final CompositeElementType VEHICLE
public static CompositeElementType[] values()
for (CompositeElementType c : CompositeElementType.values()) System.out.println(c);
public static CompositeElementType 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 null