Package com.smartgwt.client.types
Enum PreserveOpenState
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<PreserveOpenState>
,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionLike "whenUnique" but automatically preserves openState even if nodes cannot be uniquely identified.Never try to automatically preserve the openState.If either theTree.idField
orTree.nameProperty
has been set on the Tree, (so that nodes have either unique ids or unique paths), preserve openState by respecting theTree.openProperty
set by the server, then applying the openState. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static PreserveOpenState
Returns the enum constant of this type with the specified name.static PreserveOpenState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NEVER
Never try to automatically preserve the openState. Nodes will be initially open or closed based solely on theTree.openProperty
optionally set by the server.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "never". -
WHENUNIQUE
If either theTree.idField
orTree.nameProperty
has been set on the Tree, (so that nodes have either unique ids or unique paths), preserve openState by respecting theTree.openProperty
set by the server, then applying the openState.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "whenUnique". -
ALWAYS
Like "whenUnique" but automatically preserves openState even if nodes cannot be uniquely identified. This means that nodes at the same tree positions (eg 3rd child of 5th node under root) will be placed in the same openState, regardless of whether that node has anything to do with the node that previously was at that tree position.If this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "always".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
-