Package org.pushingpixels.substance.api
Enum Class SubstanceConstants.ScrollPaneButtonPolicyKind
java.lang.Object
java.lang.Enum<SubstanceConstants.ScrollPaneButtonPolicyKind>
org.pushingpixels.substance.api.SubstanceConstants.ScrollPaneButtonPolicyKind
- All Implemented Interfaces:
Serializable
,Comparable<SubstanceConstants.ScrollPaneButtonPolicyKind>
,Constable
- Enclosing class:
SubstanceConstants
public static enum SubstanceConstants.ScrollPaneButtonPolicyKind
extends Enum<SubstanceConstants.ScrollPaneButtonPolicyKind>
Enumerates possible button policies for scroll panes.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionTheadjacent
button policy - both the decrease button and the increase button are on the same side of the scroll bar adjacent to each other (like on Mac).Themultiple
button policy - there are two decrease buttons on the opposite side of the scroll bar and the increase button is adjacent to the second decrease button.Themultiple both
button policy - there are two pairs of decrease-increase buttons on the opposite sides of the scroll bar.Theempty
button policy - no buttons.Theopposite
(default) button policy - the decrease button is on one side of the scroll bar, and the increase button is on the other side of the scroll bar. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NONE
Theempty
button policy - no buttons. -
OPPOSITE
Theopposite
(default) button policy - the decrease button is on one side of the scroll bar, and the increase button is on the other side of the scroll bar. -
ADJACENT
Theadjacent
button policy - both the decrease button and the increase button are on the same side of the scroll bar adjacent to each other (like on Mac). -
MULTIPLE
-
MULTIPLE_BOTH
Themultiple both
button policy - there are two pairs of decrease-increase buttons on the opposite sides of the scroll bar. This extends theMULTIPLE
policy.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-