public enum ContainerConstructor extends Enum<ContainerConstructor>
| Enum Constant and Description |
|---|
ARRAY |
LITERAL |
NULL |
OBJECT |
UNDEFINED |
| Modifier and Type | Method and Description |
|---|---|
static ContainerConstructor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerConstructor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerConstructor UNDEFINED
public static final ContainerConstructor NULL
public static final ContainerConstructor LITERAL
public static final ContainerConstructor OBJECT
public static final ContainerConstructor ARRAY
public static ContainerConstructor[] values()
for (ContainerConstructor c : ContainerConstructor.values()) System.out.println(c);
public static ContainerConstructor 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 null