public static enum ObjectTableBuilder.SelectionMode extends Enum<ObjectTableBuilder.SelectionMode>
| Enum Constant and Description |
|---|
MULTIPLE_INTERVAL_SELECTION
Permite selecionar múltiplos intervalos de linhas.
|
NO_SELECTION
Nenhuma linha é selecionável.
|
SINGLE_INTERVAL_SELECTION
Permite selecionar um intervalo de linhas.
|
SINGLE_SELECTION
Permite selecionar apenas uma linha por vez.
|
| Modifier and Type | Method and Description |
|---|---|
static ObjectTableBuilder.SelectionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectTableBuilder.SelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectTableBuilder.SelectionMode NO_SELECTION
public static final ObjectTableBuilder.SelectionMode SINGLE_SELECTION
public static final ObjectTableBuilder.SelectionMode SINGLE_INTERVAL_SELECTION
public static final ObjectTableBuilder.SelectionMode MULTIPLE_INTERVAL_SELECTION
public static ObjectTableBuilder.SelectionMode[] values()
for (ObjectTableBuilder.SelectionMode c : ObjectTableBuilder.SelectionMode.values()) System.out.println(c);
public static ObjectTableBuilder.SelectionMode 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.