public enum ModalPanelType extends Enum<ModalPanelType>
| Enum Constant and Description |
|---|
COMPLEX |
CUSTOM_FOOTER |
CUSTOM_HEADER |
SIMPLE |
| Modifier and Type | Method and Description |
|---|---|
static ModalPanelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModalPanelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModalPanelType SIMPLE
public static final ModalPanelType COMPLEX
public static final ModalPanelType CUSTOM_HEADER
public static final ModalPanelType CUSTOM_FOOTER
public final String label
public static ModalPanelType[] values()
for (ModalPanelType c : ModalPanelType.values()) System.out.println(c);
public static ModalPanelType 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 © 2021. All rights reserved.