Package com.smartgwt.client.types
Enum CurrentPane
- All Implemented Interfaces:
ValueEnum
,Serializable
,Comparable<CurrentPane>
,Constable
Possible values for the current pane showing in a
SplitPane
. See SplitPane.currentPane
for details.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSplitPane.detailPane
is the most recently shownSplitPane.listPane
is the most recently shownSplitPane.navigationPane
is the most recently shown -
Method Summary
Modifier and TypeMethodDescriptiongetValue()
static CurrentPane
Returns the enum constant of this type with the specified name.static CurrentPane[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
NAVIGATION
SplitPane.navigationPane
is the most recently shownIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "navigation". -
LIST
SplitPane.listPane
is the most recently shownIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "list". -
DETAIL
SplitPane.detailPane
is the most recently shownIf this enumerated value is used in a
Component XML
file or server-side DataSource descriptor (.ds.xml file), use the value "detail".
-
-
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
-