org.jvnet.substance.utils
Enum SubstanceConstants.ScrollPaneButtonPolicyKind

java.lang.Object
  extended by java.lang.Enum<SubstanceConstants.ScrollPaneButtonPolicyKind>
      extended by org.jvnet.substance.utils.SubstanceConstants.ScrollPaneButtonPolicyKind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SubstanceConstants.ScrollPaneButtonPolicyKind>
Enclosing class:
SubstanceConstants

public static enum SubstanceConstants.ScrollPaneButtonPolicyKind
extends java.lang.Enum<SubstanceConstants.ScrollPaneButtonPolicyKind>

Enumerates possible button policies for scroll panes.

Author:
Kirill Grouchnikov
See Also:
SubstanceLookAndFeel.SCROLL_PANE_BUTTONS_POLICY

Enum Constant Summary
ADJACENT
          The adjacent 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
          The multiple 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.
MULTIPLE_BOTH
          The multiple both button policy - there are two pairs of decrease-increase buttons on the opposite sides of the scroll bar.
NONE
          The empty button policy - no buttons.
OPPOSITE
          The opposite (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
static SubstanceConstants.ScrollPaneButtonPolicyKind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SubstanceConstants.ScrollPaneButtonPolicyKind[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final SubstanceConstants.ScrollPaneButtonPolicyKind NONE
The empty button policy - no buttons.


OPPOSITE

public static final SubstanceConstants.ScrollPaneButtonPolicyKind OPPOSITE
The opposite (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

public static final SubstanceConstants.ScrollPaneButtonPolicyKind ADJACENT
The adjacent 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

public static final SubstanceConstants.ScrollPaneButtonPolicyKind MULTIPLE
The multiple 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. This combines the OPPOSITE and the ADJACENT policies together.


MULTIPLE_BOTH

public static final SubstanceConstants.ScrollPaneButtonPolicyKind MULTIPLE_BOTH
The multiple both button policy - there are two pairs of decrease-increase buttons on the opposite sides of the scroll bar. This extends the MULTIPLE policy.

Method Detail

values

public static SubstanceConstants.ScrollPaneButtonPolicyKind[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (SubstanceConstants.ScrollPaneButtonPolicyKind c : SubstanceConstants.ScrollPaneButtonPolicyKind.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static SubstanceConstants.ScrollPaneButtonPolicyKind valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null