org.apache.camel.spi
Enum StreamCachingStrategy.SpoolUsedHeapMemoryLimit

java.lang.Object
  extended by java.lang.Enum<StreamCachingStrategy.SpoolUsedHeapMemoryLimit>
      extended by org.apache.camel.spi.StreamCachingStrategy.SpoolUsedHeapMemoryLimit
All Implemented Interfaces:
Serializable, Comparable<StreamCachingStrategy.SpoolUsedHeapMemoryLimit>
Enclosing interface:
StreamCachingStrategy

public static enum StreamCachingStrategy.SpoolUsedHeapMemoryLimit
extends Enum<StreamCachingStrategy.SpoolUsedHeapMemoryLimit>

Used for selecting if the memory limit is committed or maximum heap memory setting.


Enum Constant Summary
Committed
           
Max
           
 
Method Summary
static StreamCachingStrategy.SpoolUsedHeapMemoryLimit valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StreamCachingStrategy.SpoolUsedHeapMemoryLimit[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

Committed

public static final StreamCachingStrategy.SpoolUsedHeapMemoryLimit Committed

Max

public static final StreamCachingStrategy.SpoolUsedHeapMemoryLimit Max
Method Detail

values

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

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

valueOf

public static StreamCachingStrategy.SpoolUsedHeapMemoryLimit valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Apache Camel