public enum DialogType extends Enum<DialogType>
Java class for dialog.type.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="dialog.type">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="searchDialog"/>
<enumeration value="calendarDialog"/>
<enumeration value="gridSettingsDialog"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
CALENDAR_DIALOG |
GRID_SETTINGS_DIALOG |
SEARCH_DIALOG |
| Modifier and Type | Method and Description |
|---|---|
static DialogType |
fromValue(String v) |
String |
value() |
static DialogType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DialogType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DialogType SEARCH_DIALOG
public static final DialogType CALENDAR_DIALOG
public static final DialogType GRID_SETTINGS_DIALOG
public static DialogType[] values()
for (DialogType c : DialogType.values()) System.out.println(c);
public static DialogType 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 nullpublic String value()
public static DialogType fromValue(String v)
Copyright © 2012–2014 RedSoft. All rights reserved.