public static enum IsModalDialog.ModalSize extends Enum<IsModalDialog.ModalSize>
| Enum Constant and Description |
|---|
ALERT
Medium modal with medium width
|
LARGE
Large modal with wider width
|
SMALL
small modal with small width
|
| Modifier and Type | Method and Description |
|---|---|
static IsModalDialog.ModalSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IsModalDialog.ModalSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IsModalDialog.ModalSize LARGE
public static final IsModalDialog.ModalSize ALERT
public static final IsModalDialog.ModalSize SMALL
public static IsModalDialog.ModalSize[] values()
for (IsModalDialog.ModalSize c : IsModalDialog.ModalSize.values()) System.out.println(c);
public static IsModalDialog.ModalSize 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.