public static enum ContainerSelection.SortableContainer extends Enum<ContainerSelection.SortableContainer>
| Enum Constant and Description |
|---|
BOTH
Ambos os containers devem ser ordenáveis.
|
LEFT_ONLY
Apenas o container da esquerda deve ser ordenável.
|
NONE
Nenhum container deve ser ordenável.
|
RIGHT_ONLY
Apenas o container da direita deve ser ordenável.
|
| Modifier and Type | Method and Description |
|---|---|
static ContainerSelection.SortableContainer |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContainerSelection.SortableContainer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContainerSelection.SortableContainer LEFT_ONLY
public static final ContainerSelection.SortableContainer RIGHT_ONLY
public static final ContainerSelection.SortableContainer BOTH
public static final ContainerSelection.SortableContainer NONE
public static ContainerSelection.SortableContainer[] values()
for (ContainerSelection.SortableContainer c : ContainerSelection.SortableContainer.values()) System.out.println(c);
public static ContainerSelection.SortableContainer 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 © 2017 Tecgraf/PUC-Rio. All rights reserved.