net.praqma.hudson.remoting
Enum EstablishResult.ResultType

java.lang.Object
  extended by java.lang.Enum<EstablishResult.ResultType>
      extended by net.praqma.hudson.remoting.EstablishResult.ResultType
All Implemented Interfaces:
Serializable, Comparable<EstablishResult.ResultType>
Enclosing class:
EstablishResult

public static enum EstablishResult.ResultType
extends Enum<EstablishResult.ResultType>


Enum Constant Summary
DELIVER_IN_PROGRESS
           
DELIVER_IN_PROGRESS_NOT_CANCELLED
           
DELIVER_REQUIRES_REBASE
           
INITIALIZE_WORKSPACE_ERROR
           
INTERPROJECT_DELIVER_DENIED
           
MERGE_ERROR
           
NOT_STARTED
           
SUCCESS
           
 
Method Summary
static EstablishResult.ResultType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EstablishResult.ResultType[] 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

NOT_STARTED

public static final EstablishResult.ResultType NOT_STARTED

MERGE_ERROR

public static final EstablishResult.ResultType MERGE_ERROR

DELIVER_REQUIRES_REBASE

public static final EstablishResult.ResultType DELIVER_REQUIRES_REBASE

INTERPROJECT_DELIVER_DENIED

public static final EstablishResult.ResultType INTERPROJECT_DELIVER_DENIED

INITIALIZE_WORKSPACE_ERROR

public static final EstablishResult.ResultType INITIALIZE_WORKSPACE_ERROR

DELIVER_IN_PROGRESS

public static final EstablishResult.ResultType DELIVER_IN_PROGRESS

DELIVER_IN_PROGRESS_NOT_CANCELLED

public static final EstablishResult.ResultType DELIVER_IN_PROGRESS_NOT_CANCELLED

SUCCESS

public static final EstablishResult.ResultType SUCCESS
Method Detail

values

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

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

valueOf

public static EstablishResult.ResultType valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2004-2012. All Rights Reserved.