Package jxl.format
Class UnderlineStyle
- java.lang.Object
-
- jxl.format.UnderlineStyle
-
public final class UnderlineStyle extends java.lang.ObjectEnumeration class which contains the various underline styles available within the standard Excel UnderlineStyle palette
-
-
Field Summary
Fields Modifier and Type Field Description static UnderlineStyleDOUBLEstatic UnderlineStyleDOUBLE_ACCOUNTINGstatic UnderlineStyleNO_UNDERLINEstatic UnderlineStyleSINGLEstatic UnderlineStyleSINGLE_ACCOUNTING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetDescription()Gets the string description for display purposesstatic UnderlineStylegetStyle(int val)Gets the UnderlineStyle from the valueintgetValue()Gets the value of this style.
-
-
-
Field Detail
-
NO_UNDERLINE
public static final UnderlineStyle NO_UNDERLINE
-
SINGLE
public static final UnderlineStyle SINGLE
-
DOUBLE
public static final UnderlineStyle DOUBLE
-
SINGLE_ACCOUNTING
public static final UnderlineStyle SINGLE_ACCOUNTING
-
DOUBLE_ACCOUNTING
public static final UnderlineStyle DOUBLE_ACCOUNTING
-
-
Method Detail
-
getValue
public int getValue()
Gets the value of this style. This is the value that is written to the generated Excel file- Returns:
- the binary value
-
getDescription
public java.lang.String getDescription()
Gets the string description for display purposes- Returns:
- the string description
-
getStyle
public static UnderlineStyle getStyle(int val)
Gets the UnderlineStyle from the value- Parameters:
val-- Returns:
- the UnderlineStyle with that value
-
-