public static enum EntityViewAttributeMapping.ContainerBehavior extends java.lang.Enum<EntityViewAttributeMapping.ContainerBehavior>
Enum Constant | 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 | Description |
---|---|---|
static EntityViewAttributeMapping.ContainerBehavior |
valueOf(java.lang.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(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2014–2019 Blazebit. All rights reserved.