public enum DocumentFlag extends Enum<DocumentFlag>
Enum Constant and Description |
---|
DocumentFlagsAccessRemoved
The current access removed status of the document.
|
DocumentFlagsDeleted
The current deleted status of the document.
|
Modifier and Type | Method and Description |
---|---|
int |
rawValue() |
static DocumentFlag |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentFlag[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentFlag DocumentFlagsDeleted
public static final DocumentFlag DocumentFlagsAccessRemoved
public static DocumentFlag[] values()
for (DocumentFlag c : DocumentFlag.values()) System.out.println(c);
public static DocumentFlag 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 rawValue()