public enum Style extends Enum<Style>
Enum Constant and Description |
---|
Default
Represents the default style.
|
Illustrator
Represents the Illustrator style.
|
IllustratorJ
Represents the IllustratorJ style.
|
InDesignJ1
Represents the InDesignJ1 style.
|
InDesignJ2
Represents the InDesignJ2 style.
|
QuarkXPress
Represents the QuarkXPress style.
|
Modifier and Type | Method and Description |
---|---|
static Style |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Style[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Style Default
public static final Style InDesignJ1
public static final Style InDesignJ2
public static final Style Illustrator
public static final Style IllustratorJ
public static final Style QuarkXPress
public static Style[] values()
for (Style c : Style.values()) System.out.println(c);
public static Style 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 © 1982–2023 Adobe Systems Incorporated. All rights reserved.