org.electrocodeogram.cpc.core.api.provider.reconciler
Enum IReconciliationResult.Status

java.lang.Object
  extended by java.lang.Enum<IReconciliationResult.Status>
      extended by org.electrocodeogram.cpc.core.api.provider.reconciler.IReconciliationResult.Status
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IReconciliationResult.Status>
Enclosing interface:
IReconciliationResult

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

The final status/result of the reconciliation effort.


Enum Constant Summary
FULL_RECONCILIATION
          The reconciler was able to fully reconcile all changes.
NO_RECONCILIATION
          The reconciler was unable to reconcile the changes.
PARTIAL_RECONCILIATION
          The reconciler was able to reconcile some of the changes.
 
Method Summary
static IReconciliationResult.Status valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IReconciliationResult.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_RECONCILIATION

public static final IReconciliationResult.Status FULL_RECONCILIATION
The reconciler was able to fully reconcile all changes. No clone data was lost.


PARTIAL_RECONCILIATION

public static final IReconciliationResult.Status PARTIAL_RECONCILIATION
The reconciler was able to reconcile some of the changes. Some clone data was lost.


NO_RECONCILIATION

public static final IReconciliationResult.Status NO_RECONCILIATION
The reconciler was unable to reconcile the changes. All clone data was lost.

Method Detail

values

public static IReconciliationResult.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 (IReconciliationResult.Status c : IReconciliationResult.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 IReconciliationResult.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