Enum Class RelationType

java.lang.Object
java.lang.Enum<RelationType>
com.hp.lft.sdk.ai.RelationType
All Implemented Interfaces:
Serializable, Comparable<RelationType>, java.lang.constant.Constable

public enum RelationType extends Enum<RelationType>
Relation types that can be used to identify an AiObject
  • Enum Constant Details

    • WITH_ANCHOR_ABOVE

      public static final RelationType WITH_ANCHOR_ABOVE
      With Anchor above
    • WITH_ANCHOR_BELOW

      public static final RelationType WITH_ANCHOR_BELOW
      With Anchor Below
    • WITH_ANCHOR_ON_LEFT

      public static final RelationType WITH_ANCHOR_ON_LEFT
      With Anchor on left
    • WITH_ANCHOR_ON_RIGHT

      public static final RelationType WITH_ANCHOR_ON_RIGHT
      With Anchor on right
  • Method Details

    • values

      public static RelationType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static RelationType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null