Enum Class BorderStyle

java.lang.Object
java.lang.Enum<BorderStyle>
org.csstudio.opibuilder.visualparts.BorderStyle
All Implemented Interfaces:
Serializable, Comparable<BorderStyle>, Constable

public enum BorderStyle extends Enum<BorderStyle>
The style of border.
  • Enum Constant Details

    • NONE

      public static final BorderStyle NONE
      No border.
    • LINE

      public static final BorderStyle LINE
      A line border.
    • RAISED

      public static final BorderStyle RAISED
      A raised border.
    • LOWERED

      public static final BorderStyle LOWERED
      A lowered border.
    • ETCHED

      public static final BorderStyle ETCHED
      A etched border.
    • RIDGED

      public static final BorderStyle RIDGED
      A ridged border.
    • BUTTON_RAISED

      public static final BorderStyle BUTTON_RAISED
    • BUTTON_PRESSED

      public static final BorderStyle BUTTON_PRESSED
    • DOTTED

      public static final BorderStyle DOTTED
      A dotted border.
    • DASHED

      public static final BorderStyle DASHED
      A dashed border.
    • DASH_DOT

      public static final BorderStyle DASH_DOT
      A dashed dotted border.
    • DASH_DOT_DOT

      public static final BorderStyle DASH_DOT_DOT
      A dashed dot dotted border.
    • TITLE_BAR

      public static final BorderStyle TITLE_BAR
    • GROUP_BOX

      public static final BorderStyle GROUP_BOX
    • ROUND_RECTANGLE_BACKGROUND

      public static final BorderStyle ROUND_RECTANGLE_BACKGROUND
    • EMPTY

      public static final BorderStyle EMPTY
  • Method Details

    • values

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

      public String toString()
      Overrides:
      toString in class Enum<BorderStyle>
    • stringValues

      public static String[] stringValues()