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