public static enum IsModalDialog.ModalType extends Enum<IsModalDialog.ModalType>
| Enum Constant and Description |
|---|
BOTTOM_SHEET
A modal that show up from the bottom of screen and spread to match the screen width
|
LEFT_SHEET
A modal that show up from the left of screen and spread to match the screen height
|
RIGHT_SHEET
A modal that show up from the right of screen and spread to match the screen height
|
TOP_SHEET
A modal that show up from the top of screen and spread to match the screen width
|
| Modifier and Type | Method and Description |
|---|---|
static IsModalDialog.ModalType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IsModalDialog.ModalType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IsModalDialog.ModalType BOTTOM_SHEET
public static final IsModalDialog.ModalType TOP_SHEET
public static final IsModalDialog.ModalType LEFT_SHEET
public static final IsModalDialog.ModalType RIGHT_SHEET
public static IsModalDialog.ModalType[] values()
for (IsModalDialog.ModalType c : IsModalDialog.ModalType.values()) System.out.println(c);
public static IsModalDialog.ModalType 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 © 2019–2022 Dominokit. All rights reserved.