Enum UnderlineType
- java.lang.Object
-
- java.lang.Enum<UnderlineType>
-
- org.apache.poi.xddf.usermodel.text.UnderlineType
-
- All Implemented Interfaces:
Serializable,Comparable<UnderlineType>
public enum UnderlineType extends Enum<UnderlineType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DASHDASH_HEAVYDASH_LONGDASH_LONG_HEAVYDOT_DASHDOT_DASH_HEAVYDOT_DOT_DASHDOT_DOT_DASH_HEAVYDOTTEDDOTTED_HEAVYDOUBLEHEAVYNONESINGLEWAVYWAVY_DOUBLEWAVY_HEAVYWORDS
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UnderlineTypevalueOf(String name)Returns the enum constant of this type with the specified name.static UnderlineType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DASH
public static final UnderlineType DASH
-
DASH_HEAVY
public static final UnderlineType DASH_HEAVY
-
DASH_LONG
public static final UnderlineType DASH_LONG
-
DASH_LONG_HEAVY
public static final UnderlineType DASH_LONG_HEAVY
-
DOUBLE
public static final UnderlineType DOUBLE
-
DOT_DASH
public static final UnderlineType DOT_DASH
-
DOT_DASH_HEAVY
public static final UnderlineType DOT_DASH_HEAVY
-
DOT_DOT_DASH
public static final UnderlineType DOT_DOT_DASH
-
DOT_DOT_DASH_HEAVY
public static final UnderlineType DOT_DOT_DASH_HEAVY
-
DOTTED
public static final UnderlineType DOTTED
-
DOTTED_HEAVY
public static final UnderlineType DOTTED_HEAVY
-
HEAVY
public static final UnderlineType HEAVY
-
NONE
public static final UnderlineType NONE
-
SINGLE
public static final UnderlineType SINGLE
-
WAVY
public static final UnderlineType WAVY
-
WAVY_DOUBLE
public static final UnderlineType WAVY_DOUBLE
-
WAVY_HEAVY
public static final UnderlineType WAVY_HEAVY
-
WORDS
public static final UnderlineType WORDS
-
-
Method Detail
-
values
public static UnderlineType[] 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 (UnderlineType c : UnderlineType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UnderlineType 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
-
-