public enum LineWeight extends Enum<LineWeight>
Enum Constant and Description |
---|
point125
Represents a line weight of 0.125.
|
point25
Represents a line weight of 0.25.
|
point5
Represents a line weight of 0.50.
|
Modifier and Type | Method and Description |
---|---|
String |
getLineWeight()
Returns the value of the line weight.
|
static LineWeight |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LineWeight[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LineWeight point125
public static final LineWeight point25
public static final LineWeight point5
public static LineWeight[] values()
for (LineWeight c : LineWeight.values()) System.out.println(c);
public static LineWeight 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 nullpublic String getLineWeight()
Copyright © 1982–2022 Adobe Systems Inc.. All rights reserved.