public enum PsdVersionEnum extends Enum<PsdVersionEnum>
File format version
Enum Constant and Description |
---|
Psb
The PSB version.
|
Psd
The default PSD version.
|
Modifier and Type | Method and Description |
---|---|
int |
getType()
Gets the value that represents the type of the enum.
|
static PsdVersionEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PsdVersionEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PsdVersionEnum Psd
The default PSD version.
public static final PsdVersionEnum Psb
The PSB version.
public static PsdVersionEnum[] values()
for (PsdVersionEnum c : PsdVersionEnum.values()) System.out.println(c);
public static PsdVersionEnum 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 int getType()