public enum FlowApplicationPref extends Enum<FlowApplicationPref> implements PreferenceDefinition
| Enum Constant and Description |
|---|
AUTO_CREATE_LINKS
Define se ligações devem ser criadas automaticamente para novos algoritmos
adicionados ao fluxo.
|
SAVE_GRAPH_BEFORE_EXECUTE
Define se o usuário deverá salvar o fluxo sempre antes de executar.
|
SHOW_GLOBAL_RECENTS
Define se devemos apresentar a categoria de algoritmos recentes globais.
|
SHOW_LOCAL_RECENTS
Define se devemos apresentar a categoria de algoritmos recentes locais.
|
SHOW_VERSION_IN_TREE
Define se as versões devem ser mostradaa na árvore de algortmos da
aplicação.
|
SHOW_VERSION_IN_WORKSPACE
Define se o número da versão deve ser mostrada nos algoritmos na área de
trabalho da aplicação.
|
| Modifier and Type | Method and Description |
|---|---|
static FlowApplicationPref |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FlowApplicationPref[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@ReadWrite @Value(type=PVBoolean.class, defaultValue="false") public static final FlowApplicationPref SHOW_VERSION_IN_TREE
@ReadWrite @Value(type=PVBoolean.class, defaultValue="false") public static final FlowApplicationPref SHOW_VERSION_IN_WORKSPACE
@ReadWrite @Value(type=PVBoolean.class, defaultValue="true") public static final FlowApplicationPref AUTO_CREATE_LINKS
@ReadWrite @Value(type=PVBoolean.class, defaultValue="false") public static final FlowApplicationPref SAVE_GRAPH_BEFORE_EXECUTE
@ReadWrite @Value(type=PVBoolean.class, defaultValue="true") public static final FlowApplicationPref SHOW_GLOBAL_RECENTS
@ReadWrite @Value(type=PVBoolean.class, defaultValue="false") public static final FlowApplicationPref SHOW_LOCAL_RECENTS
public static FlowApplicationPref[] values()
for (FlowApplicationPref c : FlowApplicationPref.values()) System.out.println(c);
public static FlowApplicationPref 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.