public enum ActiveCollectionType extends Enum<ActiveCollectionType>
Enum Constant and Description |
---|
List
The active collection is of type List.
|
Map
The active collection is of type Map.
|
Modifier and Type | Method and Description |
---|---|
static ActiveCollectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActiveCollectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActiveCollectionType List
public static final ActiveCollectionType Map
public static ActiveCollectionType[] values()
for (ActiveCollectionType c : ActiveCollectionType.values()) System.out.println(c);
public static ActiveCollectionType 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 © 2013-2015 JBoss by Red Hat. All Rights Reserved.