org.jumpmind.symmetric.fs.client
Enum SyncStatus.Stage

java.lang.Object
  extended by java.lang.Enum<SyncStatus.Stage>
      extended by org.jumpmind.symmetric.fs.client.SyncStatus.Stage
All Implemented Interfaces:
Serializable, Comparable<SyncStatus.Stage>
Enclosing class:
SyncStatus

public static enum SyncStatus.Stage
extends Enum<SyncStatus.Stage>


Enum Constant Summary
DONE
           
RAN_PRESCRIPT
           
RECEIVE_FILES
           
RECORDED_FILES_TO_SEND
           
RUN_POSTSCRIPT
           
SEND_FILES
           
START
           
 
Method Summary
static SyncStatus.Stage valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SyncStatus.Stage[] 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

START

public static final SyncStatus.Stage START

RAN_PRESCRIPT

public static final SyncStatus.Stage RAN_PRESCRIPT

RECORDED_FILES_TO_SEND

public static final SyncStatus.Stage RECORDED_FILES_TO_SEND

SEND_FILES

public static final SyncStatus.Stage SEND_FILES

RECEIVE_FILES

public static final SyncStatus.Stage RECEIVE_FILES

RUN_POSTSCRIPT

public static final SyncStatus.Stage RUN_POSTSCRIPT

DONE

public static final SyncStatus.Stage DONE
Method Detail

values

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

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

valueOf

public static SyncStatus.Stage 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 © 2012 JumpMind, Inc.. All Rights Reserved.