Package org.teamapps.dto
Enum UiQueryType
- java.lang.Object
-
- java.lang.Enum<UiQueryType>
-
- org.teamapps.dto.UiQueryType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<UiQueryType>
public enum UiQueryType extends java.lang.Enum<UiQueryType>
THIS IS GENERATED CODE! PLEASE DO NOT MODIFY - ALL YOUR WORK WOULD BE LOST!
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ABSTRACT_UI_COMBO_BOX_LAZY_CHILDRENABSTRACT_UI_COMBO_BOX_RETRIEVE_DROPDOWN_ENTRIESUI_CHAT_DISPLAY_REQUEST_CONTEXT_MENUUI_CHAT_DISPLAY_REQUEST_PREVIOUS_MESSAGES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class<? extends UiQuery>getApiClass()static UiQueryTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static UiQueryType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ABSTRACT_UI_COMBO_BOX_LAZY_CHILDREN
public static final UiQueryType ABSTRACT_UI_COMBO_BOX_LAZY_CHILDREN
-
ABSTRACT_UI_COMBO_BOX_RETRIEVE_DROPDOWN_ENTRIES
public static final UiQueryType ABSTRACT_UI_COMBO_BOX_RETRIEVE_DROPDOWN_ENTRIES
-
UI_CHAT_DISPLAY_REQUEST_PREVIOUS_MESSAGES
public static final UiQueryType UI_CHAT_DISPLAY_REQUEST_PREVIOUS_MESSAGES
-
UI_CHAT_DISPLAY_REQUEST_CONTEXT_MENU
public static final UiQueryType UI_CHAT_DISPLAY_REQUEST_CONTEXT_MENU
-
-
Method Detail
-
values
public static UiQueryType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (UiQueryType c : UiQueryType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UiQueryType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getApiClass
public java.lang.Class<? extends UiQuery> getApiClass()
-
-