Enum Class BorderLineStyle

java.lang.Object
java.lang.Enum<BorderLineStyle>
com.grapecity.documents.excel.BorderLineStyle
所有已实现的接口:
Serializable, Comparable<BorderLineStyle>, Constable

public enum BorderLineStyle extends Enum<BorderLineStyle>
Specifies the line style for the border.
  • 枚举常量详细资料

    • None

      public static final BorderLineStyle None
      Specifies no border.
    • Hair

      public static final BorderLineStyle Hair
      Specifies a hairline border.
    • DashDotDot

      public static final BorderLineStyle DashDotDot
      Specifies a dash dot dot border.
    • DashDot

      public static final BorderLineStyle DashDot
      Specifies a dash dot border.
    • Dotted

      public static final BorderLineStyle Dotted
      Specifies a dotted border.
    • Dashed

      public static final BorderLineStyle Dashed
      Specifies a dashed border.
    • Thin

      public static final BorderLineStyle Thin
      Specifies a thin border.
    • MediumDashDotDot

      public static final BorderLineStyle MediumDashDotDot
      Specifies a medium dash dot dot border.
    • SlantDashDot

      public static final BorderLineStyle SlantDashDot
      Specifies a slant dash dot border.
    • MediumDashDot

      public static final BorderLineStyle MediumDashDot
      Specifies a medium dash dot border.
    • MediumDashed

      public static final BorderLineStyle MediumDashed
      Specifies a medium dashed.
    • Medium

      public static final BorderLineStyle Medium
      Specifies a medium border.
    • Thick

      public static final BorderLineStyle Thick
      Specifies a thick line border.
    • Double

      public static final BorderLineStyle Double
      Specifies a double line.
  • 方法详细资料

    • values

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

      public static BorderLineStyle 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.)
      参数:
      name - 要返回的枚举常量的名称。
      返回:
      返回带有指定名称的枚举常量
      抛出:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - 如果参数为空值
    • getValue

      public int getValue()
    • forValue

      public static BorderLineStyle forValue(int value)