Package org.apache.poi.xddf.usermodel
Enum PresetLineDash
- java.lang.Object
-
- java.lang.Enum<PresetLineDash>
-
- org.apache.poi.xddf.usermodel.PresetLineDash
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<PresetLineDash>
public enum PresetLineDash extends java.lang.Enum<PresetLineDash>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DASH
DASH_DOT
DOT
LARGE_DASH
LARGE_DASH_DOT
LARGE_DASH_DOT_DOT
SOLID
SYSTEM_DASH
SYSTEM_DASH_DOT
SYSTEM_DASH_DOT_DOT
SYSTEM_DOT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PresetLineDash
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static PresetLineDash[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DASH
public static final PresetLineDash DASH
-
DASH_DOT
public static final PresetLineDash DASH_DOT
-
DOT
public static final PresetLineDash DOT
-
LARGE_DASH
public static final PresetLineDash LARGE_DASH
-
LARGE_DASH_DOT
public static final PresetLineDash LARGE_DASH_DOT
-
LARGE_DASH_DOT_DOT
public static final PresetLineDash LARGE_DASH_DOT_DOT
-
SOLID
public static final PresetLineDash SOLID
-
SYSTEM_DASH
public static final PresetLineDash SYSTEM_DASH
-
SYSTEM_DASH_DOT
public static final PresetLineDash SYSTEM_DASH_DOT
-
SYSTEM_DASH_DOT_DOT
public static final PresetLineDash SYSTEM_DASH_DOT_DOT
-
SYSTEM_DOT
public static final PresetLineDash SYSTEM_DOT
-
-
Method Detail
-
values
public static PresetLineDash[] 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 (PresetLineDash c : PresetLineDash.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PresetLineDash 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
-
-