- All Implemented Interfaces:
- Serializable,- Comparable<ScrollPane.ScrollBarPolicy>,- Constable
- Enclosing class:
- ScrollPane
public static enum ScrollPane.ScrollBarPolicy extends Enum<ScrollPane.ScrollBarPolicy>
An enumeration denoting the policy to be used by a scrollable
 Control in deciding whether to show a scroll bar.
- Since:
- JavaFX 2.0
- 
Nested Class SummaryNested classes/interfaces declared in class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant Summary
- 
Method SummaryModifier and Type Method Description static ScrollPane.ScrollBarPolicyvalueOf(String name)Returns the enum constant of this type with the specified name.static ScrollPane.ScrollBarPolicy[]values()Returns an array containing the constants of this enum type, in the order they are declared.
- 
Enum Constant Details- 
NEVERIndicates that a scroll bar should never be shown.
- 
ALWAYSIndicates that a scroll bar should always be shown.
- 
AS_NEEDEDIndicates that a scroll bar should be shown when required.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
 
-