com.softwareag.centrasite.api.csom.action
Enum ExportOption

java.lang.Object
  extended by java.lang.Enum<ExportOption>
      extended by com.softwareag.centrasite.api.csom.action.ExportOption
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ExportOption>

public enum ExportOption
extends java.lang.Enum<ExportOption>

The ExportOption serves an enhancement to the existing export function.
You use the ExportOption to include specific export functions such as the following:
1) Include assets referenced by selected assets
2) Include all assets that are instances of the selected asset type
.. and so on


Enum Constant Summary
INCLUDE_ASSETS_OF_ORGANIZATION
           
INCLUDE_CHILD_ORGANIZATIONS
           
INCLUDE_LIFECYCLE_MODELS_AND_POLICIES
           
INCLUDE_REFERNCED_ASSETS
           
INCLUDE_USERS
           
 
Method Summary
 java.lang.String getExportOption()
           
static ExportOption lookUp(java.lang.String exportOption)
           
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.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INCLUDE_REFERNCED_ASSETS

public static final ExportOption INCLUDE_REFERNCED_ASSETS

INCLUDE_USERS

public static final ExportOption INCLUDE_USERS

INCLUDE_CHILD_ORGANIZATIONS

public static final ExportOption INCLUDE_CHILD_ORGANIZATIONS

INCLUDE_LIFECYCLE_MODELS_AND_POLICIES

public static final ExportOption INCLUDE_LIFECYCLE_MODELS_AND_POLICIES

INCLUDE_ASSETS_OF_ORGANIZATION

public static final ExportOption INCLUDE_ASSETS_OF_ORGANIZATION
Method Detail

values

public static ExportOption[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ExportOption c : ExportOption.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ExportOption valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

getExportOption

public java.lang.String getExportOption()

lookUp

public static ExportOption lookUp(java.lang.String exportOption)