Enum EventSchemaMode

java.lang.Object
java.lang.Enum<EventSchemaMode>
com.smartgwt.client.types.EventSchemaMode
All Implemented Interfaces:
ValueEnum, Serializable, Comparable<EventSchemaMode>, Constable

public enum EventSchemaMode extends Enum<EventSchemaMode> implements ValueEnum
  • Enum Constant Details

    • OMIT

      public static final EventSchemaMode OMIT
      Event properties are omitted entirely.

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "omit".

    • ACTIONBINDING

      public static final EventSchemaMode ACTIONBINDING
      Events are typed as Action binding objects (target + action name + optional mapping).

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "actionBinding".

    • DECLARATIVE

      public static final EventSchemaMode DECLARATIVE
      Events are typed as full Process definitions (no plain-string mode).

      If this enumerated value is used in a Component XML file or server-side DataSource descriptor (.ds.xml file), use the value "declarative".

  • Method Details

    • values

      public static EventSchemaMode[] 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

      public static EventSchemaMode valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null
    • getValue

      public String getValue()
      Specified by:
      getValue in interface ValueEnum