public enum ScrollAmount extends Enum<ScrollAmount>
| Enum Constant and Description |
|---|
ScrollAmount_LargeDecrement
The value of this constant is 0
|
ScrollAmount_LargeIncrement
The value of this constant is 3
|
ScrollAmount_NoAmount
The value of this constant is 2
|
ScrollAmount_SmallDecrement
The value of this constant is 1
|
ScrollAmount_SmallIncrement
The value of this constant is 4
|
| Modifier and Type | Method and Description |
|---|---|
static ScrollAmount |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ScrollAmount[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScrollAmount ScrollAmount_LargeDecrement
The value of this constant is 0
public static final ScrollAmount ScrollAmount_SmallDecrement
The value of this constant is 1
public static final ScrollAmount ScrollAmount_NoAmount
The value of this constant is 2
public static final ScrollAmount ScrollAmount_LargeIncrement
The value of this constant is 3
public static final ScrollAmount ScrollAmount_SmallIncrement
The value of this constant is 4
public static ScrollAmount[] values()
for (ScrollAmount c : ScrollAmount.values()) System.out.println(c);
public static ScrollAmount valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2016. All rights reserved.