android.webkit
Enum WebSettings.TextSize
java.lang.Object
java.lang.Enum<WebSettings.TextSize>
android.webkit.WebSettings.TextSize
- All Implemented Interfaces:
- Serializable, Comparable<WebSettings.TextSize>
- Enclosing class:
- WebSettings
public static enum WebSettings.TextSize
- extends Enum<WebSettings.TextSize>
Enum for specifying the text size.
SMALLEST is 50%
SMALLER is 75%
NORMAL is 100%
LARGER is 150%
LARGEST is 200%
|
Field Summary |
(package private) int |
value
|
SMALLEST
public static final WebSettings.TextSize SMALLEST
SMALLER
public static final WebSettings.TextSize SMALLER
NORMAL
public static final WebSettings.TextSize NORMAL
LARGER
public static final WebSettings.TextSize LARGER
LARGEST
public static final WebSettings.TextSize LARGEST
value
int value
values
public static WebSettings.TextSize[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (WebSettings.TextSize c : WebSettings.TextSize.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static WebSettings.TextSize valueOf(String name)
- Returns 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
Please submit a feedback, bug or feature