public enum ReviewDisplay extends Enum<ReviewDisplay>
Mode is set to "view". The default value is
"original".| Enum Constant and Description |
|---|
FINAL
The document is displayed with all the proposed changes applied.
|
MARKUP
The document is displayed with proposed changes highlighted.
|
ORIGINAL
The original document is displayed without the proposed changes.
|
SIMPLE
The document is displayed with proposed changes highlighted, but the balloons are turned off.
|
| Modifier and Type | Method and Description |
|---|---|
static ReviewDisplay |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReviewDisplay[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReviewDisplay MARKUP
public static final ReviewDisplay SIMPLE
public static final ReviewDisplay FINAL
public static final ReviewDisplay ORIGINAL
public static ReviewDisplay[] values()
for (ReviewDisplay c : ReviewDisplay.values()) System.out.println(c);
public static ReviewDisplay 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 © 2023–2024. All rights reserved.