public static enum EntityViewAttributeMapping.ContainerBehavior extends Enum<EntityViewAttributeMapping.ContainerBehavior>
| Enum Constant and Description |
|---|
DEFAULT
The default behavior doesn't mandate a deterministic ordering.
|
INDEXED
Specifies that the elements of the container are indexed upon which the iteration order is based on.
|
ORDERED
Specifies that the container's iteration order must match the element insertion order.
|
SORTED
Specifies that the container's iteration order must match the sort order as defined by a comparator or a comparable element type.
|
| Modifier and Type | Method and Description |
|---|---|
static EntityViewAttributeMapping.ContainerBehavior |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntityViewAttributeMapping.ContainerBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntityViewAttributeMapping.ContainerBehavior DEFAULT
public static final EntityViewAttributeMapping.ContainerBehavior ORDERED
public static final EntityViewAttributeMapping.ContainerBehavior INDEXED
public static final EntityViewAttributeMapping.ContainerBehavior SORTED
public static EntityViewAttributeMapping.ContainerBehavior[] values()
for (EntityViewAttributeMapping.ContainerBehavior c : EntityViewAttributeMapping.ContainerBehavior.values()) System.out.println(c);
public static EntityViewAttributeMapping.ContainerBehavior 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–2018 Blazebit. All rights reserved.