gr.uoa.di.madgik.grs.buffer
Enum IBuffer.TransportDirective

java.lang.Object
  extended by java.lang.Enum<IBuffer.TransportDirective>
      extended by gr.uoa.di.madgik.grs.buffer.IBuffer.TransportDirective
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IBuffer.TransportDirective>
Enclosing interface:
IBuffer

public static enum IBuffer.TransportDirective
extends java.lang.Enum<IBuffer.TransportDirective>

The transport directive set for the IBuffer or its contained items. All the directives declared for the items supporting a transport directive use this enumeration. This directives are used in cases of non same JVM hosted instances of writer and reader

Author:
gpapanikos

Enum Constant Summary
Full
          The full payload should be transfered whenever first requested
Inherit
          The transport is inherited by the element that is higher up the item hierarchy.
Partial
          Initially no payload is transfered, but it is gradually send with subsequent requests
 
Method Summary
static IBuffer.TransportDirective valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IBuffer.TransportDirective[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Inherit

public static final IBuffer.TransportDirective Inherit
The transport is inherited by the element that is higher up the item hierarchy. For the top most element, IBuffer, this value should not be used. If used, then the IBuffer implementation should override it.


Full

public static final IBuffer.TransportDirective Full
The full payload should be transfered whenever first requested


Partial

public static final IBuffer.TransportDirective Partial
Initially no payload is transfered, but it is gradually send with subsequent requests

Method Detail

values

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

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

valueOf

public static IBuffer.TransportDirective 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