Enum IExcelCellStyle.BorderTypes
- java.lang.Object
-
- java.lang.Enum<IExcelCellStyle.BorderTypes>
-
- com.mendix.modules.exportmanager.interfaces.excel.IExcelCellStyle.BorderTypes
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<IExcelCellStyle.BorderTypes>
- Enclosing interface:
- IExcelCellStyle
public static enum IExcelCellStyle.BorderTypes extends java.lang.Enum<IExcelCellStyle.BorderTypes>
Defines the available border types.
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description short
getValue()
Returns the value of the border type.static IExcelCellStyle.BorderTypes
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static IExcelCellStyle.BorderTypes[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BORDER_NONE
public static final IExcelCellStyle.BorderTypes BORDER_NONE
-
BORDER_THIN
public static final IExcelCellStyle.BorderTypes BORDER_THIN
-
BORDER_MEDIUM
public static final IExcelCellStyle.BorderTypes BORDER_MEDIUM
-
BORDER_DASHED
public static final IExcelCellStyle.BorderTypes BORDER_DASHED
-
BORDER_HAIR
public static final IExcelCellStyle.BorderTypes BORDER_HAIR
-
BORDER_THICK
public static final IExcelCellStyle.BorderTypes BORDER_THICK
-
BORDER_DOUBLE
public static final IExcelCellStyle.BorderTypes BORDER_DOUBLE
-
BORDER_DOTTED
public static final IExcelCellStyle.BorderTypes BORDER_DOTTED
-
BORDER_MEDIUM_DASHED
public static final IExcelCellStyle.BorderTypes BORDER_MEDIUM_DASHED
-
BORDER_DASH_DOT
public static final IExcelCellStyle.BorderTypes BORDER_DASH_DOT
-
BORDER_MEDIUM_DASH_DOT
public static final IExcelCellStyle.BorderTypes BORDER_MEDIUM_DASH_DOT
-
BORDER_DASH_DOT_DOT
public static final IExcelCellStyle.BorderTypes BORDER_DASH_DOT_DOT
-
BORDER_MEDIUM_DASH_DOT_DOT
public static final IExcelCellStyle.BorderTypes BORDER_MEDIUM_DASH_DOT_DOT
-
BORDER_SLANTED_DASH_DOT
public static final IExcelCellStyle.BorderTypes BORDER_SLANTED_DASH_DOT
-
-
Method Detail
-
values
public static IExcelCellStyle.BorderTypes[] 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 (IExcelCellStyle.BorderTypes c : IExcelCellStyle.BorderTypes.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IExcelCellStyle.BorderTypes 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 namejava.lang.NullPointerException
- if the argument is null
-
getValue
public short getValue()
Returns the value of the border type.
-
-