com.netflix.curator.framework.recipes.cache
Enum PathChildrenCacheEvent.Type

java.lang.Object
  extended by java.lang.Enum<PathChildrenCacheEvent.Type>
      extended by com.netflix.curator.framework.recipes.cache.PathChildrenCacheEvent.Type
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<PathChildrenCacheEvent.Type>
Enclosing class:
PathChildrenCacheEvent

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

Type of change


Enum Constant Summary
CHILD_ADDED
          A child was added to the path
CHILD_REMOVED
          A child was removed from the path
CHILD_UPDATED
          A child's data was changed
CONNECTION_LOST
          Called when the connection has changed to ConnectionState.LOST
CONNECTION_RECONNECTED
          Called when the connection has changed to ConnectionState.RECONNECTED
CONNECTION_SUSPENDED
          Called when the connection has changed to ConnectionState.SUSPENDED
INITIALIZED
          Posted when PathChildrenCache.start(PathChildrenCache.StartMode) is called with PathChildrenCache.StartMode.POST_INITIALIZED_EVENT.
 
Method Summary
static PathChildrenCacheEvent.Type valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static PathChildrenCacheEvent.Type[] 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

CHILD_ADDED

public static final PathChildrenCacheEvent.Type CHILD_ADDED
A child was added to the path


CHILD_UPDATED

public static final PathChildrenCacheEvent.Type CHILD_UPDATED
A child's data was changed


CHILD_REMOVED

public static final PathChildrenCacheEvent.Type CHILD_REMOVED
A child was removed from the path


CONNECTION_SUSPENDED

public static final PathChildrenCacheEvent.Type CONNECTION_SUSPENDED
Called when the connection has changed to ConnectionState.SUSPENDED


CONNECTION_RECONNECTED

public static final PathChildrenCacheEvent.Type CONNECTION_RECONNECTED
Called when the connection has changed to ConnectionState.RECONNECTED


CONNECTION_LOST

public static final PathChildrenCacheEvent.Type CONNECTION_LOST
Called when the connection has changed to ConnectionState.LOST


INITIALIZED

public static final PathChildrenCacheEvent.Type INITIALIZED
Posted when PathChildrenCache.start(PathChildrenCache.StartMode) is called with PathChildrenCache.StartMode.POST_INITIALIZED_EVENT. This event signals that the initial cache has been populated.

Method Detail

values

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

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

valueOf

public static PathChildrenCacheEvent.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
java.lang.NullPointerException - if the argument is null