public enum ExportOption extends java.lang.Enum<ExportOption>
Enum Constant and Description |
---|
INCLUDE_ASSETS_OF_ORGANIZATION |
INCLUDE_CHILD_ORGANIZATIONS |
INCLUDE_LIFECYCLE_MODELS_AND_POLICIES |
INCLUDE_REFERNCED_ASSETS |
INCLUDE_USERS |
REMVOE_AUDITABLE |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getExportOption()
Gets the string equivalent of the export option.
|
static ExportOption |
lookUp(java.lang.String exportOption)
Looks up the enum equivalent of the given string.
|
static ExportOption |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExportOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExportOption INCLUDE_REFERNCED_ASSETS
public static final ExportOption INCLUDE_USERS
public static final ExportOption INCLUDE_CHILD_ORGANIZATIONS
public static final ExportOption INCLUDE_LIFECYCLE_MODELS_AND_POLICIES
public static final ExportOption INCLUDE_ASSETS_OF_ORGANIZATION
public static final ExportOption REMVOE_AUDITABLE
public static ExportOption[] values()
for (ExportOption c : ExportOption.values()) System.out.println(c);
public static ExportOption 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 java.lang.String getExportOption()
public static ExportOption lookUp(java.lang.String exportOption)
exportOption
- The string valueExportOption
equivalent to the given string value