org.openscience.cdk.renderer.elements
Enum LineElement.LineType
java.lang.Object
java.lang.Enum<LineElement.LineType>
org.openscience.cdk.renderer.elements.LineElement.LineType
- All Implemented Interfaces:
- Serializable, Comparable<LineElement.LineType>
- Enclosing class:
- LineElement
public static enum LineElement.LineType
- extends Enum<LineElement.LineType>
The type of the line.
SINGLE
public static final LineElement.LineType SINGLE
DOUBLE
public static final LineElement.LineType DOUBLE
TRIPLE
public static final LineElement.LineType TRIPLE
QUADRUPLE
public static final LineElement.LineType QUADRUPLE
values
public static LineElement.LineType[] 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 (LineElement.LineType c : LineElement.LineType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static LineElement.LineType 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 name
NullPointerException - if the argument is null
count
public int count()
- Returns the count for this line type.
- Returns:
- the count for this line type.