Class Overview
Author review and marking states that can be set on the note annotation content and replies.
Summary
Enum Values |
AuthorState |
ACCEPTED |
The user agrees with the change. |
AuthorState |
CANCELLED |
The change has been cancelled. |
AuthorState |
COMPLETED |
The change has been completed. |
AuthorState |
MARKED |
The annotation has been marked by the user. |
AuthorState |
NONE |
The user has indicated nothing about the change. |
AuthorState |
REJECTED |
The user disagrees with the change. |
AuthorState |
UNMARKED |
The annotation has not been marked by the user (the default). |
[Expand]
Inherited Methods |
From class
java.lang.Enum
final
Object
|
clone()
|
final
int
|
compareTo(E arg0)
|
int
|
compareTo(Object arg0)
|
final
boolean
|
equals(Object arg0)
|
final
void
|
finalize()
|
final
Class<E>
|
getDeclaringClass()
|
final
int
|
hashCode()
|
final
String
|
name()
|
final
int
|
ordinal()
|
String
|
toString()
|
static
<T extends Enum<T>>
T
|
valueOf(Class<T> arg0, String arg1)
|
|
From class
java.lang.Object
Object
|
clone()
|
boolean
|
equals(Object arg0)
|
void
|
finalize()
|
final
Class<?>
|
getClass()
|
int
|
hashCode()
|
final
void
|
notify()
|
final
void
|
notifyAll()
|
String
|
toString()
|
final
void
|
wait(long arg0, int arg1)
|
final
void
|
wait(long arg0)
|
final
void
|
wait()
|
|
From interface
java.lang.Comparable
abstract
int
|
compareTo(T arg0)
|
|
Enum Values
public
static
final
AuthorState
ACCEPTED
The user agrees with the change.
public
static
final
AuthorState
CANCELLED
The change has been cancelled.
public
static
final
AuthorState
COMPLETED
The change has been completed.
public
static
final
AuthorState
MARKED
The annotation has been marked by the user.
public
static
final
AuthorState
NONE
The user has indicated nothing about the change.
public
static
final
AuthorState
REJECTED
The user disagrees with the change.
public
static
final
AuthorState
UNMARKED
The annotation has not been marked by the user (the default).
Public Methods