net.refractions.udig.catalog
Enum IResolveDelta.Kind

java.lang.Object
  extended by java.lang.Enum<IResolveDelta.Kind>
      extended by net.refractions.udig.catalog.IResolveDelta.Kind
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IResolveDelta.Kind>
Enclosing interface:
IResolveDelta

public static enum IResolveDelta.Kind
extends java.lang.Enum<IResolveDelta.Kind>

Kind of Delta, used to indicate change.

Since:
0.9.0
Author:
jgarnett

Enum Constant Summary
ADDED
          The resource has been added to the catalog.
CHANGED
          The resource has been changed.
NO_CHANGE
          Delta kind constant indicating no change.
REMOVED
          The resource has been removed from the catalog.
REPLACED
          The resource has been replaced with another entry in the catalog.
 
Method Summary
static IResolveDelta.Kind valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IResolveDelta.Kind[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NO_CHANGE

public static final IResolveDelta.Kind NO_CHANGE
Delta kind constant indicating no change.

See Also:
IResolveDelta.getKind()

ADDED

public static final IResolveDelta.Kind ADDED
The resource has been added to the catalog.

See Also:
IResolveDelta.getKind()

REMOVED

public static final IResolveDelta.Kind REMOVED
The resource has been removed from the catalog.

See Also:
IResolveDelta.getKind()

CHANGED

public static final IResolveDelta.Kind CHANGED
The resource has been changed. getvalues will have values.

See Also:
IResolveDelta.getKind()

REPLACED

public static final IResolveDelta.Kind REPLACED
The resource has been replaced with another entry in the catalog.

See Also:
IResolveDelta.getKind()
Method Detail

values

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

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

valueOf

public static IResolveDelta.Kind 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