public enum BorderType extends Enum<BorderType> implements Enumerator
ExcelPackage.getBorderType()
Enum Constant and Description |
---|
DASH_DOT_DOT_LITERAL
The 'Dash Dot Dot' literal object.
|
DASH_DOT_LITERAL
The 'Dash Dot' literal object.
|
DASHED_LITERAL
The 'Dashed' literal object.
|
DOTTED_LITERAL
The 'Dotted' literal object.
|
DOUBLE_LITERAL
The 'Double' literal object.
|
HAIR_LITERAL
The 'Hair' literal object.
|
MEDIUM_DASH_DOT_DOT_LITERAL
The 'Medium Dash Dot Dot' literal object.
|
MEDIUM_DASH_DOT_LITERAL
The 'Medium Dash Dot' literal object.
|
MEDIUM_DASHED_LITERAL
The 'Medium Dashed' literal object.
|
MEDIUM_LITERAL
The 'Medium' literal object.
|
NONE_LITERAL
The 'None' literal object.
|
SLANTED_DASH_DOT_LITERAL
The 'Slanted Dash Dot' literal object.
|
THICK_LITERAL
The 'Thick' literal object.
|
THIN_LITERAL
The 'Thin' literal object.
|
Modifier and Type | Field and Description |
---|---|
static int |
DASH_DOT
The 'Dash Dot' literal value.
|
static int |
DASH_DOT_DOT
The 'Dash Dot Dot' literal value.
|
static int |
DASHED
The 'Dashed' literal value.
|
static int |
DOTTED
The 'Dotted' literal value.
|
static int |
DOUBLE
The 'Double' literal value.
|
static int |
HAIR
The 'Hair' literal value.
|
static int |
MEDIUM
The 'Medium' literal value.
|
static int |
MEDIUM_DASH_DOT
The 'Medium Dash Dot' literal value.
|
static int |
MEDIUM_DASH_DOT_DOT
The 'Medium Dash Dot Dot' literal value.
|
static int |
MEDIUM_DASHED
The 'Medium Dashed' literal value.
|
static int |
NONE
The 'None' literal value.
|
static int |
SLANTED_DASH_DOT
The 'Slanted Dash Dot' literal value.
|
static int |
THICK
The 'Thick' literal value.
|
static int |
THIN
The 'Thin' literal value.
|
static List<BorderType> |
VALUES
A public read-only list of all the 'Border Type' enumerators.
|
Modifier and Type | Method and Description |
---|---|
static BorderType |
get(int value)
Returns the 'Border Type' literal with the specified integer value.
|
static BorderType |
get(String literal)
Returns the 'Border Type' literal with the specified literal value.
|
static BorderType |
getByName(String name)
Returns the 'Border Type' literal with the specified name.
|
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString()
Returns the literal value of the enumerator, which is its string representation.
|
static BorderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BorderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderType NONE_LITERAL
NONE
public static final BorderType THIN_LITERAL
THIN
public static final BorderType MEDIUM_LITERAL
MEDIUM
public static final BorderType DASHED_LITERAL
DASHED
public static final BorderType DOTTED_LITERAL
DOTTED
public static final BorderType THICK_LITERAL
THICK
public static final BorderType DOUBLE_LITERAL
DOUBLE
public static final BorderType HAIR_LITERAL
HAIR
public static final BorderType MEDIUM_DASHED_LITERAL
MEDIUM_DASHED
public static final BorderType DASH_DOT_LITERAL
DASH_DOT
public static final BorderType MEDIUM_DASH_DOT_LITERAL
MEDIUM_DASH_DOT
public static final BorderType DASH_DOT_DOT_LITERAL
DASH_DOT_DOT
public static final BorderType MEDIUM_DASH_DOT_DOT_LITERAL
MEDIUM_DASH_DOT_DOT
public static final BorderType SLANTED_DASH_DOT_LITERAL
SLANTED_DASH_DOT
public static final int NONE
NONE_LITERAL
,
Constant Field Valuespublic static final int THIN
THIN_LITERAL
,
Constant Field Valuespublic static final int MEDIUM
MEDIUM_LITERAL
,
Constant Field Valuespublic static final int DASHED
DASHED_LITERAL
,
Constant Field Valuespublic static final int DOTTED
DOTTED_LITERAL
,
Constant Field Valuespublic static final int THICK
THICK_LITERAL
,
Constant Field Valuespublic static final int DOUBLE
DOUBLE_LITERAL
,
Constant Field Valuespublic static final int HAIR
HAIR_LITERAL
,
Constant Field Valuespublic static final int MEDIUM_DASHED
MEDIUM_DASHED_LITERAL
,
Constant Field Valuespublic static final int DASH_DOT
DASH_DOT_LITERAL
,
Constant Field Valuespublic static final int MEDIUM_DASH_DOT
MEDIUM_DASH_DOT_LITERAL
,
Constant Field Valuespublic static final int DASH_DOT_DOT
DASH_DOT_DOT_LITERAL
,
Constant Field Valuespublic static final int MEDIUM_DASH_DOT_DOT
MEDIUM_DASH_DOT_DOT_LITERAL
,
Constant Field Valuespublic static final int SLANTED_DASH_DOT
SLANTED_DASH_DOT_LITERAL
,
Constant Field Valuespublic static final List<BorderType> VALUES
public static BorderType[] values()
for (BorderType c : BorderType.values()) System.out.println(c);
public static 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 nullpublic static BorderType get(String literal)
literal
- the literal.null
.public static BorderType getByName(String name)
name
- the name.null
.public static BorderType get(int value)
value
- the integer value.null
.public int getValue()
getValue
in interface Enumerator
public String getName()
getName
in interface Enumerator
public String getLiteral()
getLiteral
in interface Enumerator
public String toString()
toString
in class Enum<BorderType>