public enum ImportRequestType extends Enum<ImportRequestType>
| Enum Constant and Description |
|---|
CONTENT_MANAGER_ITEM
A content manager item.
|
QUERY
A query.
|
URL
An url.
|
| Modifier and Type | Method and Description |
|---|---|
static ImportRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ImportRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportRequestType CONTENT_MANAGER_ITEM
public static final ImportRequestType QUERY
public static final ImportRequestType URL
public static ImportRequestType[] values()
for (ImportRequestType c : ImportRequestType.values()) System.out.println(c);
public static ImportRequestType 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 © 2018. All Rights Reserved.