Enum AppearanceStreamGenerator.AppearanceStreamGenerationOptions
-
- All Implemented Interfaces:
public enum AppearanceStreamGenerator.AppearanceStreamGenerationOptions
Options for appearance stream generation.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description FLATTEN
The appearance stream we're asking for is for flattening an annotation. This, for example, makes a difference for note annotations.
PRINT
The appearance stream we're asking for is for flattening an annotation for printing. This requires different behaviour in some cases, like if the annotation has `NoView | Print` set as its flags.
-
Method Summary
Modifier and Type Method Description static Array<AppearanceStreamGenerator.AppearanceStreamGenerationOptions>
values()
Returns an array containing the constants of this enum type, in the order they're declared. static AppearanceStreamGenerator.AppearanceStreamGenerationOptions
valueOf(String name)
Returns the enum constant of this type with the specified name. -
-
Method Detail
-
values
static Array<AppearanceStreamGenerator.AppearanceStreamGenerationOptions> values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.
- Returns:
an array containing the constants of this enum type, in the order they're declared
-
valueOf
static AppearanceStreamGenerator.AppearanceStreamGenerationOptions valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
- Returns:
the enum constant with the specified name
-
-
-
-