public enum AnnotationState extends Enum<AnnotationState>
The enumeration of states to which the original annotation can be set.
Enum Constant and Description |
---|
Accepted
The user agrees with the change.
|
Cancelled
The change has been cancelled.
|
Completed
The change has been completed.
|
Marked
The annotation has been marked by the user.
|
None
The user has indicated nothing about the change.
|
Rejected
The user disagrees with the change.
|
Undefined
Not defined state.
|
Unmarked
The annotation has not been marked by the user.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AnnotationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AnnotationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AnnotationState Undefined
Not defined state.
public static final AnnotationState Marked
The annotation has been marked by the user.
public static final AnnotationState Unmarked
The annotation has not been marked by the user.
public static final AnnotationState Accepted
The user agrees with the change.
public static final AnnotationState Rejected
The user disagrees with the change.
public static final AnnotationState Cancelled
The change has been cancelled.
public static final AnnotationState Completed
The change has been completed.
public static final AnnotationState None
The user has indicated nothing about the change.
public static AnnotationState[] values()
for (AnnotationState c : AnnotationState.values()) System.out.println(c);
public static AnnotationState 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 getValue()
Copyright © 2025 Aspose. All Rights Reserved.