public enum ElementScrollBehavior extends java.lang.Enum<ElementScrollBehavior>
Modifier and Type | Field and Description |
---|---|
private int |
value |
Modifier and Type | Method and Description |
---|---|
static ElementScrollBehavior |
fromString(java.lang.String text) |
java.lang.String |
toString() |
static ElementScrollBehavior |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElementScrollBehavior[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElementScrollBehavior TOP
public static final ElementScrollBehavior BOTTOM
public static ElementScrollBehavior[] values()
for (ElementScrollBehavior c : ElementScrollBehavior.values()) System.out.println(c);
public static ElementScrollBehavior valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String toString()
toString
in class java.lang.Enum<ElementScrollBehavior>
public static ElementScrollBehavior fromString(java.lang.String text)