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

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

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

During remote transport of an item payload, the defined IBuffer.TransportDirective can be overridden to request a different behavior. This enumeration defines when this override needs to take place.

Author:
gpapanikos

Enum Constant Summary
Defined
          No override to the originally defined IBuffer.TransportDirective is needed
Override
          The component should behave as if the IBuffer.TransportDirective defined for it was IBuffer.TransportDirective.Full
 
Method Summary
static IBuffer.TransportOverride valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IBuffer.TransportOverride[] 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

Override

public static final IBuffer.TransportOverride Override
The component should behave as if the IBuffer.TransportDirective defined for it was IBuffer.TransportDirective.Full


Defined

public static final IBuffer.TransportOverride Defined
No override to the originally defined IBuffer.TransportDirective is needed

Method Detail

values

public static IBuffer.TransportOverride[] 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.TransportOverride c : IBuffer.TransportOverride.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.TransportOverride 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