public static enum RtfText.FieldModifier extends Enum<RtfText.FieldModifier>
| Enum Constant and Description |
|---|
DIRTY
A formatting change has been made to the field result since the field was last updated.
|
EDITED
Text has been added to, or removed from, the field result since the field was last updated.
|
LOCKED
Field is locked and cannot be updated.
|
NONDISPLAYABLE
Result is not in a form suitable for display (for example, binary data
used by fields whose result is a picture).
|
| Modifier and Type | Method and Description |
|---|---|
static RtfText.FieldModifier |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RtfText.FieldModifier[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RtfText.FieldModifier DIRTY
public static final RtfText.FieldModifier EDITED
public static final RtfText.FieldModifier LOCKED
public static final RtfText.FieldModifier NONDISPLAYABLE
public static RtfText.FieldModifier[] values()
for (RtfText.FieldModifier c : RtfText.FieldModifier.values()) System.out.println(c);
public static RtfText.FieldModifier 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 © 2010–2015 Tutego. All rights reserved.