Package org.apache.poi.xddf.usermodel
Enum PresetLineDash
- java.lang.Object
-
- java.lang.Enum<PresetLineDash>
-
- org.apache.poi.xddf.usermodel.PresetLineDash
-
- All Implemented Interfaces:
Serializable,Comparable<PresetLineDash>
public enum PresetLineDash extends Enum<PresetLineDash>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DASHDASH_DOTDOTLARGE_DASHLARGE_DASH_DOTLARGE_DASH_DOT_DOTSOLIDSYSTEM_DASHSYSTEM_DASH_DOTSYSTEM_DASH_DOT_DOTSYSTEM_DOT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PresetLineDashvalueOf(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(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
-
-