com.acesoft.aceoffix
Enum XLSBorderLineStyle
java.lang.Object
java.lang.Enum<XLSBorderLineStyle>
com.acesoft.aceoffix.XLSBorderLineStyle
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<XLSBorderLineStyle>
public enum XLSBorderLineStyle
- extends java.lang.Enum<XLSBorderLineStyle>
Specifies the style of the border line.
- Version:
- 3.0
- Author:
- Acesoft Corporation
Method Summary |
static XLSBorderLineStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static XLSBorderLineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Methods inherited from class java.lang.Enum |
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
getClass, notify, notifyAll, wait, wait, wait |
Continuous
public static final XLSBorderLineStyle Continuous
Dash
public static final XLSBorderLineStyle Dash
DashDot
public static final XLSBorderLineStyle DashDot
DashDotDot
public static final XLSBorderLineStyle DashDotDot
Dot
public static final XLSBorderLineStyle Dot
Double
public static final XLSBorderLineStyle Double
SlantDashDot
public static final XLSBorderLineStyle SlantDashDot
values
public static XLSBorderLineStyle[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (XLSBorderLineStyle c : XLSBorderLineStyle.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static XLSBorderLineStyle valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (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:
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is null