Enum MoveKnobPoint

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

public enum MoveKnobPoint extends Enum<MoveKnobPoint> implements ValueEnum
Specifies the starting point of a move knob with respect to its draw item. The move knob is positioned relative to the move knob point at the DrawItem.moveKnobOffset.
  • Enum Constant Details

    • TL

      public static final MoveKnobPoint TL
      Top Left corner

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

    • TR

      public static final MoveKnobPoint TR
      Top Right corner

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

    • BL

      public static final MoveKnobPoint BL
      Bottom Left corner

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

    • BR

      public static final MoveKnobPoint BR
      Bottom Right corner

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

  • Method Details

    • values

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