Enum XlsxBorderStyle
- java.lang.Object
-
- java.lang.Enum<XlsxBorderStyle>
-
- net.sf.jasperreports.engine.export.ooxml.XlsxBorderStyle
-
- All Implemented Interfaces:
Serializable
,Comparable<XlsxBorderStyle>
public enum XlsxBorderStyle extends Enum<XlsxBorderStyle>
- Author:
- Lucian Chirita (lucianc@users.sourceforge.net)
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
value()
static XlsxBorderStyle
valueOf(String name)
Returns the enum constant of this type with the specified name.static XlsxBorderStyle[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOUBLE
public static final XlsxBorderStyle DOUBLE
-
DOTTED
public static final XlsxBorderStyle DOTTED
-
DASHED
public static final XlsxBorderStyle DASHED
-
MEDIUM_DASHED
public static final XlsxBorderStyle MEDIUM_DASHED
-
THICK
public static final XlsxBorderStyle THICK
-
MEDIUM
public static final XlsxBorderStyle MEDIUM
-
THIN
public static final XlsxBorderStyle THIN
-
HAIR
public static final XlsxBorderStyle HAIR
-
-
Method Detail
-
values
public static XlsxBorderStyle[] 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 (XlsxBorderStyle c : XlsxBorderStyle.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static XlsxBorderStyle valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
value
public String value()
-
-