public static enum IBuffer.TransportDirective extends Enum<IBuffer.TransportDirective>
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| Enum Constant and Description |
|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
static IBuffer.TransportDirective |
valueOf(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.
|
public static final IBuffer.TransportDirective Inherit
public static final IBuffer.TransportDirective Full
public static final IBuffer.TransportDirective Partial
public static IBuffer.TransportDirective[] values()
for (IBuffer.TransportDirective c : IBuffer.TransportDirective.values()) System.out.println(c);
public static IBuffer.TransportDirective valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullCopyright © 2014. All Rights Reserved.