org.jtoolkit.essence.concurrency
Enum CallbackSet.CallbackMode

java.lang.Object
  extended by java.lang.Enum<CallbackSet.CallbackMode>
      extended by org.jtoolkit.essence.concurrency.CallbackSet.CallbackMode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CallbackSet.CallbackMode>
Enclosing interface:
CallbackSet<T>

public static enum CallbackSet.CallbackMode
extends java.lang.Enum<CallbackSet.CallbackMode>

The mode for Callbacks in the setCopy.


Enum Constant Summary
SIMPLE
          Call back is called by the thread which triggered the call back.
THREADED
          Call back is on the same thread.
 
Method Summary
static CallbackSet.CallbackMode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CallbackSet.CallbackMode[] 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

THREADED

public static final CallbackSet.CallbackMode THREADED
Call back is on the same thread.


SIMPLE

public static final CallbackSet.CallbackMode SIMPLE
Call back is called by the thread which triggered the call back.

Method Detail

values

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

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

valueOf

public static CallbackSet.CallbackMode 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


Copyright © Peter Lawrey. All Rights Reserved.