public static enum ToolOptions.visibility extends Enum<ToolOptions.visibility>
eu.bandm.tools.dtm.ToolOptions#get_elementGraph()
eu.bandm.tools.dtm.ToolOptions#get_analyses()
eu.bandm.tools.dtm.ToolOptions#get_comments()
eu.bandm.tools.dtm.ToolOptions#get_GEs()
eu.bandm.tools.dtm.ToolOptions#get_elements()
eu.bandm.tools.dtm.ToolOptions#get_alphabeticDir()
eu.bandm.tools.dtm.ToolOptions#get_entityGraph()
eu.bandm.tools.dtm.ToolOptions#get_PIs()
eu.bandm.tools.dtm.ToolOptions#get_inserts()
eu.bandm.tools.dtm.ToolOptions#get_attlists()
eu.bandm.tools.dtm.ToolOptions#get_PEs()
Enum Constant and Description |
---|
off
This value indicates: The category does never
appear in the rendering.
|
offOn
This value indicates: The category is
expandable/collapsable, and initially collapsed.
|
on
This value indicates: The category does always
appear in the rendering.
|
onOff
This value indicates: The category is
expandable/collapsable, and initially expanded.
|
Modifier and Type | Method and Description |
---|---|
static ToolOptions.visibility |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ToolOptions.visibility[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ToolOptions.visibility on
public static final ToolOptions.visibility off
public static final ToolOptions.visibility onOff
public static final ToolOptions.visibility offOn
public static ToolOptions.visibility[] values()
for (ToolOptions.visibility c : ToolOptions.visibility.values()) System.out.println(c);
public static ToolOptions.visibility 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 nullsee also the complete user documentation .