public enum ActionType extends Enum<ActionType>
| Enum Constant and Description |
|---|
ADD
Adição
|
EDIT
Edição
|
OTHER
Outros tipos de ações
|
OTHER_MULTI_SELECTION
Ação generica que requer pelo menos um item selecionado
|
OTHER_ONLY_MULTI_SELECTION
Ação generica que requer multiplos itens selecionados
|
OTHER_SINGLE_SELECTION
Ação generica que requer um item selecionado
|
REFRESH
Atualizar
|
REMOVE
Remoção
|
| Modifier and Type | Method and Description |
|---|---|
static ActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionType ADD
public static final ActionType EDIT
public static final ActionType REMOVE
public static final ActionType REFRESH
public static final ActionType OTHER
public static final ActionType OTHER_SINGLE_SELECTION
public static final ActionType OTHER_MULTI_SELECTION
public static final ActionType OTHER_ONLY_MULTI_SELECTION
public static ActionType[] values()
for (ActionType c : ActionType.values()) System.out.println(c);
public static ActionType 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. All rights reserved.