dermi.annotation
Enum SynchronyType

java.lang.Object
  extended by java.lang.Enum<SynchronyType>
      extended by dermi.annotation.SynchronyType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<SynchronyType>

public enum SynchronyType
extends java.lang.Enum<SynchronyType>

This enumeration class defines the different blocking policies for Dermi's RPC calls

Version:
1.2
Author:
Carles Pairot

Enum Constant Summary
ASYNCHRONOUS
          The call does not block
AT_LEAST_ONE
          The call unblocks when at least one response is received
SYNCHRONOUS
          The call blocks until a specified % of responses are received
 
Method Summary
static SynchronyType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static SynchronyType[] 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

SYNCHRONOUS

public static final SynchronyType SYNCHRONOUS
The call blocks until a specified % of responses are received


ASYNCHRONOUS

public static final SynchronyType ASYNCHRONOUS
The call does not block


AT_LEAST_ONE

public static final SynchronyType AT_LEAST_ONE
The call unblocks when at least one response is received

Method Detail

values

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

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

valueOf

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