com.neeve.ods
Enum IStoreBinding.StartupExpectation

java.lang.Object
  extended by java.lang.Enum<IStoreBinding.StartupExpectation>
      extended by com.neeve.ods.IStoreBinding.StartupExpectation
All Implemented Interfaces:
Serializable, Comparable<IStoreBinding.StartupExpectation>
Enclosing interface:
IStoreBinding

public static enum IStoreBinding.StartupExpectation
extends Enum<IStoreBinding.StartupExpectation>

Enumerates the set of startup expectations that can be requested.

This enumerates the various startup expectations that can be requested when opening a store. A startup expectation is an expectation of the state of a store and/or it environment when it is starting up. A store provided an expectation when starting will fail to start if the expectation is not met.


Enum Constant Summary
LogEmptiness
          Used to specify the expectation of the emptiness of a store's transaction log on startup.
Role
          Used to specify the expectation of a store binding's role on startup.
 
Method Summary
static IStoreBinding.StartupExpectation valueOf(String name)
          Returns the enum constant of this type with the specified name.
static IStoreBinding.StartupExpectation[] 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

Role

public static final IStoreBinding.StartupExpectation Role
Used to specify the expectation of a store binding's role on startup.

This value is used to specify the expectation of an store binding's role on startup. The permissible values associated with this expectation are the enumerated store binding role values i.e. IStoreBinding.Role.


LogEmptiness

public static final IStoreBinding.StartupExpectation LogEmptiness
Used to specify the expectation of the emptiness of a store's transaction log on startup.

This value is used to specify the expectation of the emptienss a store's transaction log. Permissible values are enumerated by the store persister's log emptiness expectation enumeration

Notes:

Note

See Also:
IStorePersister.LogEmptinessExpectation
Method Detail

values

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

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

valueOf

public static IStoreBinding.StartupExpectation 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 © 2016 Neeve Research, LLC. All Rights Reserved.