net.refractions.udig.catalog
Enum IResolveChangeEvent.Type

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

public static enum IResolveChangeEvent.Type
extends java.lang.Enum<IResolveChangeEvent.Type>


Enum Constant Summary
POST_CHANGE
          Event type constant (bit mask) indicating an after-the-fact report of replacements, creations, deletions, and modifications to one or more resources expressed as a hierarchical resource delta as returned by getDelta.
PRE_CLOSE
          Event type constant (bit mask) indicating a before-the-fact report of the impending closure of a single service as returned by getService.
PRE_DELETE
          Event type constant (bit mask) indicating a before-the-fact report of the impending deletion of a single service, as returned by getService.
 
Method Summary
static IResolveChangeEvent.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IResolveChangeEvent.Type[] 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

POST_CHANGE

public static final IResolveChangeEvent.Type POST_CHANGE
Event type constant (bit mask) indicating an after-the-fact report of replacements, creations, deletions, and modifications to one or more resources expressed as a hierarchical resource delta as returned by getDelta.

See Also:
IResolveChangeEvent.getType(), IResolveChangeEvent.getDelta()

PRE_CLOSE

public static final IResolveChangeEvent.Type PRE_CLOSE
Event type constant (bit mask) indicating a before-the-fact report of the impending closure of a single service as returned by getService.

See Also:
IResolveChangeEvent.getType(), #getService()

PRE_DELETE

public static final IResolveChangeEvent.Type PRE_DELETE
Event type constant (bit mask) indicating a before-the-fact report of the impending deletion of a single service, as returned by getService.

See Also:
IResolveChangeEvent.getType(), #getService()
Method Detail

values

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

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

valueOf

public static IResolveChangeEvent.Type 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