public enum ElementPlacementSort extends Enum<ElementPlacementSort>
| Enum Constant and Description |
|---|
AS_IS |
DELETE_UNUSED |
SORT |
SORT_DELETE_UNUSED |
SORT_UNUSED_LAST |
| Modifier and Type | Method and Description |
|---|---|
boolean |
isDeleteUnused() |
boolean |
isSort() |
boolean |
isUnused() |
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 final ElementPlacementSort SORT_DELETE_UNUSED
public static final ElementPlacementSort DELETE_UNUSED
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 nullpublic boolean isUnused()
public boolean isDeleteUnused()
public boolean isSort()
Copyright © 2020. All rights reserved.