public enum CadLineStyle extends Enum<CadLineStyle>
Line style
| Enum Constant and Description |
|---|
DashDoubleDot
Dash double dot
|
DotDashed
Dot dashed
|
Dotted
Dotted line style
|
LongDashed
Long dashed
|
LongDashShortDash
Long dash-short dash
|
MediumDashed
Medium dashed
|
ShortDashed
Short dashed
|
Solid
Solid line style
|
| Modifier and Type | Method and Description |
|---|---|
static CadLineStyle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CadLineStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CadLineStyle Solid
Solid line style
public static final CadLineStyle Dotted
Dotted line style
public static final CadLineStyle MediumDashed
Medium dashed
public static final CadLineStyle LongDashed
Long dashed
public static final CadLineStyle DotDashed
Dot dashed
public static final CadLineStyle ShortDashed
Short dashed
public static final CadLineStyle DashDoubleDot
Dash double dot
public static final CadLineStyle LongDashShortDash
Long dash-short dash
public static CadLineStyle[] values()
for (CadLineStyle c : CadLineStyle.values()) System.out.println(c);
public static CadLineStyle 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 (c) 2008-2025 Aspose Pty Ltd. All Rights Reserved.