public enum ECollectionBaseType extends Enum<ECollectionBaseType>
| Enum Constant and Description |
|---|
ARRAY
Arrays
|
COLLECTION
The collection type applies to all Collection objects that are not Sets,
and will be compared in their regular order.
|
ENUMERATION
Enumeration
|
ITERABLE
Iterable
|
ITERATOR
Iterator
|
MAP
Maps are key-value-containers
|
SET
Sets represent unordered container
|
| Modifier and Type | Method and Description |
|---|---|
static ECollectionBaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECollectionBaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECollectionBaseType COLLECTION
public static final ECollectionBaseType SET
public static final ECollectionBaseType MAP
public static final ECollectionBaseType ARRAY
public static final ECollectionBaseType ITERATOR
public static final ECollectionBaseType ITERABLE
public static final ECollectionBaseType ENUMERATION
public static ECollectionBaseType[] values()
for (ECollectionBaseType c : ECollectionBaseType.values()) System.out.println(c);
public static ECollectionBaseType 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 © 2014–2017 Philip Helger. All rights reserved.