java.io.Serializable
, java.lang.Comparable<TableType>
public enum TableType extends java.lang.Enum<TableType>
SBTabTable
view
If a new name to appropriate table should be assigned, the following naming rules must be observed:
1. If a name consists of several words every space(blank) should be substituted with underscore(_)
Why naming rules are important?2. Every separate type must be written in upper case(general conventions)
The SBTabTabsComposer
creates new tabs based on the name of the jfx
TextLabel
of corresponding TreeItem
in TreeView
. The
name of the Tab
is translated into the corresponding TableType
,
depending on that SBTabTableProducer
generates necessary
TableView
for displaying it in the Tab
.
Enum Constant | Description |
---|---|
COMPARTMENTS |
|
PARAMETERS |
|
REACTIONS |
|
SPECIES |
|
UNIT_DEFINITIONS |
Modifier and Type | Method | Description |
---|---|---|
static TableType |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static TableType[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableType REACTIONS
public static final TableType SPECIES
public static final TableType COMPARTMENTS
public static final TableType UNIT_DEFINITIONS
public static final TableType PARAMETERS
public static TableType[] values()
for (TableType c : TableType.values()) System.out.println(c);
public static TableType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2018. All rights reserved.