public enum ElementPlacementSort extends Enum<ElementPlacementSort>
| Enum Constant and Description |
|---|
AS_IS |
SORT |
SORT_UNUSED_LAST |
| Modifier and Type | Method and Description |
|---|---|
static ElementPlacementSort |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ElementPlacementSort[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementPlacementSort AS_IS
public static final ElementPlacementSort SORT
public static final ElementPlacementSort SORT_UNUSED_LAST
public static ElementPlacementSort[] values()
for (ElementPlacementSort c : ElementPlacementSort.values()) System.out.println(c);
public static ElementPlacementSort 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 © 2019. All rights reserved.