public static enum SBorder.BorderType extends Enum<SBorder.BorderType>
Enum Constant and Description |
---|
DASH_DOT |
DASH_DOT_DOT |
DASHED |
DOTTED |
DOUBLE |
HAIR |
MEDIUM |
MEDIUM_DASH_DOT |
MEDIUM_DASH_DOT_DOT |
MEDIUM_DASHED |
NONE |
SLANTED_DASH_DOT |
THICK |
THIN |
Modifier and Type | Method and Description |
---|---|
static SBorder.BorderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SBorder.BorderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SBorder.BorderType NONE
public static final SBorder.BorderType THIN
public static final SBorder.BorderType MEDIUM
public static final SBorder.BorderType DASHED
public static final SBorder.BorderType HAIR
public static final SBorder.BorderType THICK
public static final SBorder.BorderType DOUBLE
public static final SBorder.BorderType DOTTED
public static final SBorder.BorderType MEDIUM_DASHED
public static final SBorder.BorderType DASH_DOT
public static final SBorder.BorderType MEDIUM_DASH_DOT
public static final SBorder.BorderType DASH_DOT_DOT
public static final SBorder.BorderType MEDIUM_DASH_DOT_DOT
public static final SBorder.BorderType SLANTED_DASH_DOT
public static SBorder.BorderType[] values()
for (SBorder.BorderType c : SBorder.BorderType.values()) System.out.println(c);
public static SBorder.BorderType valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.