Package com.smartgwt.client.types
Enum EventSchemaMode
- All Implemented Interfaces:
ValueEnum,Serializable,Comparable<EventSchemaMode>,Constable
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionEvents are typed as Action binding objects (target + action name + optional mapping).Events are typed as full Process definitions (no plain-string mode).Event properties are omitted entirely. -
Method Summary
Modifier and TypeMethodDescriptiongetValue()static EventSchemaModeReturns the enum constant of this type with the specified name.static EventSchemaMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
OMIT
Event properties are omitted entirely.If this enumerated value is used in a
Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "omit". -
ACTIONBINDING
Events are typed as Action binding objects (target + action name + optional mapping).If this enumerated value is used in a
Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "actionBinding". -
DECLARATIVE
Events are typed as full Process definitions (no plain-string mode).If this enumerated value is used in a
Component XMLfile or server-side DataSource descriptor (.ds.xml file), use the value "declarative".
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
-