public static enum Layer.LayerType extends java.lang.Enum<Layer.LayerType>
| Enum Constant and Description |
|---|
Image |
Null |
PreComp |
Shape |
Solid |
Text |
Unknown |
| Modifier and Type | Method and Description |
|---|---|
static Layer.LayerType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Layer.LayerType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Layer.LayerType PreComp
public static final Layer.LayerType Solid
public static final Layer.LayerType Image
public static final Layer.LayerType Null
public static final Layer.LayerType Shape
public static final Layer.LayerType Text
public static final Layer.LayerType Unknown
public static Layer.LayerType[] values()
for (Layer.LayerType c : Layer.LayerType.values()) System.out.println(c);
public static Layer.LayerType 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