public static enum ContainerEqualsUtils.EContainerType extends Enum<ContainerEqualsUtils.EContainerType>
| 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 ContainerEqualsUtils.EContainerType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerEqualsUtils.EContainerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerEqualsUtils.EContainerType COLLECTION
public static final ContainerEqualsUtils.EContainerType SET
public static final ContainerEqualsUtils.EContainerType MAP
public static final ContainerEqualsUtils.EContainerType ARRAY
public static final ContainerEqualsUtils.EContainerType ITERATOR
public static final ContainerEqualsUtils.EContainerType ITERABLE
public static final ContainerEqualsUtils.EContainerType ENUMERATION
public static ContainerEqualsUtils.EContainerType[] values()
for (ContainerEqualsUtils.EContainerType c : ContainerEqualsUtils.EContainerType.values()) System.out.println(c);
public static ContainerEqualsUtils.EContainerType 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 © 2006–2015 phloc systems. All rights reserved.