public enum ChangeTokenScope extends java.lang.Enum<ChangeTokenScope>
| Enum Constant and Description |
|---|
CONTENT_DB |
LIST |
SITE |
SITE_COLLECTION |
| Modifier and Type | Method and Description |
|---|---|
static ChangeTokenScope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChangeTokenScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeTokenScope CONTENT_DB
public static final ChangeTokenScope LIST
public static final ChangeTokenScope SITE
public static final ChangeTokenScope SITE_COLLECTION
public static ChangeTokenScope valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static ChangeTokenScope[] values()
for (ChangeTokenScope c : ChangeTokenScope.values()) System.out.println(c);