public enum WebViewShowType extends java.lang.Enum<WebViewShowType>
| Enum Constant and Description |
|---|
FULL_SCREEN
Во весь экран
|
POPUP
В виде popup-диалога стандартного размера
|
WORKSPACE
Во весь экран, но с сохранением доступа к меню и статусной строке кассы
|
| Modifier and Type | Method and Description |
|---|---|
static WebViewShowType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static WebViewShowType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WebViewShowType FULL_SCREEN
public static final WebViewShowType WORKSPACE
public static final WebViewShowType POPUP
public static WebViewShowType[] values()
for (WebViewShowType c : WebViewShowType.values()) System.out.println(c);
public static WebViewShowType 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 null