public enum AnnotationFlags extends java.lang.Enum<AnnotationFlags>
| Enum Constant and Description |
|---|
HIDDEN
The annotation is not visible and does not print.
|
INVISIBLE
If there is no annotation handler, the annotation is invisible.
|
LOCK
The annotation does not move or resize with the view.
|
LOCK_CONTENTS
If the annotation is content-locked, the user can not change its content key.
|
NO_ROTATE
The annotation does not rotate with the page.
|
NO_VIEW
The annotation does not view but can print.
|
NO_ZOOM
The annotation does not zoom with the view.
|
PRINT
The annotation prints.
|
READ_ONLY
The annotation does not interact with the user.
|
TOGGLE_NO_VIEW
A mouse-over or selection causes the noView bit to toggle.
|
| Modifier and Type | Method and Description |
|---|---|
static AnnotationFlags |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationFlags[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationFlags INVISIBLE
public static final AnnotationFlags HIDDEN
public static final AnnotationFlags PRINT
public static final AnnotationFlags NO_ZOOM
public static final AnnotationFlags NO_ROTATE
public static final AnnotationFlags NO_VIEW
public static final AnnotationFlags READ_ONLY
public static final AnnotationFlags LOCK
public static final AnnotationFlags TOGGLE_NO_VIEW
public static final AnnotationFlags LOCK_CONTENTS
public static AnnotationFlags[] values()
for (AnnotationFlags c : AnnotationFlags.values()) System.out.println(c);
public static AnnotationFlags 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