public enum DocumentAccessLevel extends Enum<DocumentAccessLevel>
Enum Constant and Description |
---|
FULL
Full
|
NONE
None
|
TRACKING
Tracking
|
VIEWER
Viewer
|
Modifier and Type | Method and Description |
---|---|
static DocumentAccessLevel |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentAccessLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentAccessLevel FULL
public static final DocumentAccessLevel VIEWER
public static final DocumentAccessLevel TRACKING
public static final DocumentAccessLevel NONE
public static DocumentAccessLevel[] values()
for (DocumentAccessLevel c : DocumentAccessLevel.values()) System.out.println(c);
public static DocumentAccessLevel 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 © 2019. All rights reserved.