java.lang.Object
java.lang.Enum<BorderStyle>
com.orchestranetworks.addon.dmdv.template.bean.BorderStyle
All Implemented Interfaces:
Serializable, Comparable<BorderStyle>, Constable

public enum BorderStyle extends Enum<BorderStyle>
Defines the panel's border style.
Since:
1.2.0
  • Enum Constant Details

    • SOLID

      public static final BorderStyle SOLID
      Defines a solid line.
    • DOTTED

      public static final BorderStyle DOTTED
      Defines a dotted line.
    • DASHED

      public static final BorderStyle DASHED
      Defines a dashed line.
  • Method Details

    • values

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