com.epam.fixengine
Enum StorageCleanupMode

java.lang.Object
  extended by java.lang.Enum<StorageCleanupMode>
      extended by com.epam.fixengine.StorageCleanupMode
All Implemented Interfaces:
Serializable, Comparable<StorageCleanupMode>

public enum StorageCleanupMode
extends Enum<StorageCleanupMode>

This enum specifies cleaning mode for message storage of sessions.


Enum Constant Summary
Backup
          Back up the session storage logs
Delete
          Delete the session storage logs
None
           
 
Method Summary
static StorageCleanupMode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static StorageCleanupMode[] 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

None

public static final StorageCleanupMode None

Backup

public static final StorageCleanupMode Backup
Back up the session storage logs


Delete

public static final StorageCleanupMode Delete
Delete the session storage logs

Method Detail

values

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

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

valueOf

public static StorageCleanupMode 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 © 2000-2014 EPAM Systems. All Rights Reserved.