public static enum WebSettings.LayoutAlgorithm extends Enum<WebSettings.LayoutAlgorithm>
| Enum Constant and Description |
|---|
NARROW_COLUMNS |
NORMAL |
SINGLE_COLUMN |
| Modifier and Type | Method and Description |
|---|---|
static WebSettings.LayoutAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WebSettings.LayoutAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebSettings.LayoutAlgorithm NARROW_COLUMNS
public static final WebSettings.LayoutAlgorithm NORMAL
public static final WebSettings.LayoutAlgorithm SINGLE_COLUMN
public static WebSettings.LayoutAlgorithm[] values()
for (WebSettings.LayoutAlgorithm c : WebSettings.LayoutAlgorithm.values()) System.out.println(c);
public static WebSettings.LayoutAlgorithm 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 © 2008-2013. All Rights Reserved.