public enum Overflow extends Enum<Overflow>
Modifier and Type | Field and Description |
---|---|
static Overflow |
AUTO
Deprecated.
Since Tobago 3.0.0 Please use
auto |
static Overflow |
HIDDEN
Deprecated.
Since Tobago 3.0.0 Please use
hidden |
static Overflow |
SCROLL
Deprecated.
Since Tobago 3.0.0 Please use
scroll |
static String |
STRING_AUTO
Internal constant to use in annotations.
|
static String |
STRING_HIDDEN
Internal constant to use in annotations.
|
static String |
STRING_SCROLL
Internal constant to use in annotations.
|
Modifier and Type | Method and Description |
---|---|
String |
getValue()
Deprecated.
Since Tobago 3.0.0 Please use
Overflow:name |
static Overflow |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Overflow[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Overflow auto
public static final Overflow hidden
public static final Overflow scroll
public static final String STRING_AUTO
auto
public static final String STRING_HIDDEN
hidden
public static final String STRING_SCROLL
scroll
public static Overflow[] values()
for (Overflow c : Overflow.values()) System.out.println(c);
public static Overflow 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 nullpublic String getValue()
Overflow:name
Copyright © 2002–2015 The Apache Software Foundation. All rights reserved.