public static enum Lines.LinePattern extends Enum<Lines.LinePattern>
Enum Constant and Description |
---|
DASH
Dashed lines.
|
DASH_DOT
Dashed-dotted lines.
|
DOT
Dotted lines.
|
SOLID
Solid lines with no pattern.
|
Modifier and Type | Method and Description |
---|---|
static Lines.LinePattern |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Lines.LinePattern[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Lines.LinePattern SOLID
public static final Lines.LinePattern DASH
public static final Lines.LinePattern DOT
public static final Lines.LinePattern DASH_DOT
public static Lines.LinePattern[] values()
for (Lines.LinePattern c : Lines.LinePattern.values()) System.out.println(c);
public static Lines.LinePattern valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2019 Solibri, Inc.. All rights reserved.