org.electrocodeogram.cpc.exports.api.exports.adapter
Enum IExportToolAdapter.Status

java.lang.Object
  extended by java.lang.Enum<IExportToolAdapter.Status>
      extended by org.electrocodeogram.cpc.exports.api.exports.adapter.IExportToolAdapter.Status
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IExportToolAdapter.Status>
Enclosing interface:
IExportToolAdapter

public static enum IExportToolAdapter.Status
extends java.lang.Enum<IExportToolAdapter.Status>

Return value for IExportToolAdapter.processExport(IProgressMonitor, IExportToolAdapterTask, IExportToolAdapterResult).


Enum Constant Summary
FULL_EXPORT
          The export process finished successfully.
NO_EXPORT
          No error occurred but the export did not export any clone data.
PARTIAL_EXPORT
          No error occurred but the export did not export all clone data.
 
Method Summary
static IExportToolAdapter.Status valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IExportToolAdapter.Status[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

FULL_EXPORT

public static final IExportToolAdapter.Status FULL_EXPORT
The export process finished successfully.
All clone data was exported.


PARTIAL_EXPORT

public static final IExportToolAdapter.Status PARTIAL_EXPORT
No error occurred but the export did not export all clone data.
This may happen in cases where special filters are applied during export.


NO_EXPORT

public static final IExportToolAdapter.Status NO_EXPORT
No error occurred but the export did not export any clone data.
This typically happens if the exported files/projects currently don't contain any cpc clone data.

Method Detail

values

public static IExportToolAdapter.Status[] 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 (IExportToolAdapter.Status c : IExportToolAdapter.Status.values())
    System.out.println(c);

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

valueOf

public static IExportToolAdapter.Status 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