Enum Class TreeType

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

public enum TreeType extends Enum<TreeType>
The type of tree.
  • Enum Constant Details

    • SIMPLE_TREE

      public static final TreeType SIMPLE_TREE
      A tree without any items.
    • LIST_TREE

      public static final TreeType LIST_TREE
      A tree that includes items.
    • COLUMN_TREE

      public static final TreeType COLUMN_TREE
      A tree with columns.
  • Method Details

    • values

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