public enum LinePattern extends java.lang.Enum<LinePattern> implements ValueEnum
| Enum Constant and Description | 
|---|
| DASHDashed line | 
| DOTDotted line | 
| LONGDASHDashed line, with longer, more widely spaced dashes | 
| SHORTDASHDashed line, with shorter, more tightly spaced dashes | 
| SHORTDOTDotted line, with more tightly spaced dots | 
| SOLIDSolid line | 
| Modifier and Type | Method and Description | 
|---|---|
| java.lang.String | getValue() | 
| static LinePattern | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static LinePattern[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final LinePattern SOLID
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "solid".
public static final LinePattern DOT
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "dot".
public static final LinePattern DASH
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "dash".
public static final LinePattern SHORTDOT
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "shortdot".
public static final LinePattern SHORTDASH
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "shortdash".
public static final LinePattern LONGDASH
 If this enumerated value is used in a Component XML
 file or server-side DataSource descriptor (.ds.xml file), use the value "longdash".
public static LinePattern[] values()
for (LinePattern c : LinePattern.values()) System.out.println(c);
public static LinePattern valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null