Daisy Open Source CMS

org.outerj.daisy.tools.importexport.import_.schema
Enum SchemaLoadResult

java.lang.Object
  extended by java.lang.Enum<SchemaLoadResult>
      extended by org.outerj.daisy.tools.importexport.import_.schema.SchemaLoadResult
All Implemented Interfaces:
Serializable, Comparable<SchemaLoadResult>

public enum SchemaLoadResult
extends Enum<SchemaLoadResult>


Enum Constant Summary
CREATED
           
NO_UPDATE_NEEDED
           
UPDATE_SKIPPED
           
UPDATED
           
 
Method Summary
 String toString()
           
static SchemaLoadResult valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SchemaLoadResult[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UPDATE_SKIPPED

public static final SchemaLoadResult UPDATE_SKIPPED

UPDATED

public static final SchemaLoadResult UPDATED

CREATED

public static final SchemaLoadResult CREATED

NO_UPDATE_NEEDED

public static final SchemaLoadResult NO_UPDATE_NEEDED
Method Detail

values

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

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

valueOf

public static SchemaLoadResult 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

toString

public String toString()
Overrides:
toString in class Enum<SchemaLoadResult>

Daisy Open Source CMS