- java.lang.Object
-
- java.lang.Enum<ScrollEvent.VerticalTextScrollUnits>
-
- javafx.scene.input.ScrollEvent.VerticalTextScrollUnits
-
- All Implemented Interfaces:
-
Serializable
,Comparable<ScrollEvent.VerticalTextScrollUnits>
- Enclosing class:
- ScrollEvent
public static enum ScrollEvent.VerticalTextScrollUnits extends Enum<ScrollEvent.VerticalTextScrollUnits>
垂直的基于文本的滚动单元。- 从以下版本开始:
- JavaFX 2.0
-
-
方法摘要
所有方法 静态方法 具体的方法 Modifier and Type 方法 描述 static ScrollEvent.VerticalTextScrollUnits
valueOf(String name)
以指定的名称返回此类型的枚举常量。static ScrollEvent.VerticalTextScrollUnits[]
values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。
-
-
-
Enum Constant Detail
-
NONE
public static final ScrollEvent.VerticalTextScrollUnits NONE
垂直的基于文本的滚动数据不可用(不由底层平台提供)。
-
LINES
public static final ScrollEvent.VerticalTextScrollUnits LINES
垂直的基于文本的滚动量是要滚动的行数。
-
PAGES
public static final ScrollEvent.VerticalTextScrollUnits PAGES
垂直的基于文本的滚动量是要滚动的页面数。
-
-
方法详细信息
-
values
public static ScrollEvent.VerticalTextScrollUnits[] values()
按照它们声明的顺序返回一个包含此枚举类型常量的数组。 该方法可用于遍历常量如下:for (ScrollEvent.VerticalTextScrollUnits c : ScrollEvent.VerticalTextScrollUnits.values()) System.out.println(c);
- 结果
- 一个包含这个枚举类型的常量的数组,按照它们被声明的顺序
-
valueOf
public static ScrollEvent.VerticalTextScrollUnits valueOf(String name)
以指定的名称返回此类型的枚举常量。 字符串必须完全匹配用于声明此类型的枚举常量的标识符。 (不允许使用外来空白字符。)- 参数
-
name
- 要返回的枚举常量的名称。 - 结果
- 具有指定名称的枚举常数
- 异常
-
IllegalArgumentException
- 如果此枚举类型没有指定名称的常量 -
NullPointerException
- if the argument is null
-
-