public enum WrapperElementType extends Enum<WrapperElementType>
| Enum Constant and Description |
|---|
COLLECTION |
MAP |
SINGLE |
| Modifier and Type | Method and Description |
|---|---|
static WrapperElementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WrapperElementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WrapperElementType SINGLE
public static final WrapperElementType COLLECTION
public static final WrapperElementType MAP
public static WrapperElementType[] values()
for (WrapperElementType c : WrapperElementType.values()) System.out.println(c);
public static WrapperElementType 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 © 2003–2019 MuleSoft, Inc.. All rights reserved.