Enum Class BorderLineStyle
- 所有已实现的接口:
Serializable
,Comparable<BorderLineStyle>
,Constable
Specifies the line style for the border.
-
嵌套类概要
从类继承的嵌套类/接口 java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
枚举常量概要
枚举常量说明Specifies a dash dot border.Specifies a dash dot dot border.Specifies a dashed border.Specifies a dotted border.Specifies a double line.Specifies a hairline border.Specifies a medium border.Specifies a medium dash dot border.Specifies a medium dash dot dot border.Specifies a medium dashed.Specifies no border.Specifies a slant dash dot border.Specifies a thick line border.Specifies a thin border. -
方法概要
修饰符和类型方法说明static BorderLineStyle
forValue
(int value) int
getValue()
static BorderLineStyle
Returns the enum constant of this class with the specified name.static BorderLineStyle[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
枚举常量详细资料
-
None
Specifies no border. -
Hair
Specifies a hairline border. -
DashDotDot
Specifies a dash dot dot border. -
DashDot
Specifies a dash dot border. -
Dotted
Specifies a dotted border. -
Dashed
Specifies a dashed border. -
Thin
Specifies a thin border. -
MediumDashDotDot
Specifies a medium dash dot dot border. -
SlantDashDot
Specifies a slant dash dot border. -
MediumDashDot
Specifies a medium dash dot border. -
MediumDashed
Specifies a medium dashed. -
Medium
Specifies a medium border. -
Thick
Specifies a thick line border. -
Double
Specifies a double line.
-
-
方法详细资料
-
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
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 nameNullPointerException
- 如果参数为空值
-
getValue
public int getValue() -
forValue
-