Enum DrawPosition

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

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

    • BEFOREBEGIN

      public static final DrawPosition BEFOREBEGIN
      insert before the target element

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

    • AFTERBEGIN

      public static final DrawPosition AFTERBEGIN
      insert as the target element's first child

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

    • BEFOREEND

      public static final DrawPosition BEFOREEND
      insert as the target element's last child

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

    • AFTEREND

      public static final DrawPosition AFTEREND
      insert after the target element

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

    • REPLACE

      public static final DrawPosition REPLACE
      replace the target element

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

  • Method Details

    • values

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