com.thoughtworks.proxy.toys.pool
Enum SerializationMode

java.lang.Object
  extended by java.lang.Enum<SerializationMode>
      extended by com.thoughtworks.proxy.toys.pool.SerializationMode
All Implemented Interfaces:
Serializable, Comparable<SerializationMode>

public enum SerializationMode
extends Enum<SerializationMode>

The mode of serialization for pools.

Since:
1.0
Author:
Paul Hammant

Enum Constant Summary
FORCE
          FORCE is the value for serialization of the pool with or without serializable objects.
NONE
          NONE is the value for serialization of the pool without the objects.
STANDARD
          STANDARD is the value for the standard serialization of the pool with its objects.
 
Method Summary
static SerializationMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SerializationMode[] 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

FORCE

public static final SerializationMode FORCE
FORCE is the value for serialization of the pool with or without serializable objects. If the objects cannot be serialized, the pool is empty after serialization and must be populated again.

Since:
1.0

STANDARD

public static final SerializationMode STANDARD
STANDARD is the value for the standard serialization of the pool with its objects. If the objects cannot be serialized, a NotSerializableException is thrown.

Since:
1.0

NONE

public static final SerializationMode NONE
NONE is the value for serialization of the pool without the objects. The pool is empty after serialization and must be populated again.

Since:
1.0
Method Detail

values

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

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

valueOf

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


Copyright © 2005-2010 Codehaus. All Rights Reserved.