Franz Inc, AllegroGraph

com.franz.agraph.pool
Enum AGConnProp.Session

java.lang.Object
  extended by java.lang.Enum<AGConnProp.Session>
      extended by com.franz.agraph.pool.AGConnProp.Session
All Implemented Interfaces:
Serializable, Comparable<AGConnProp.Session>
Enclosing class:
AGConnProp

public static enum AGConnProp.Session
extends Enum<AGConnProp.Session>

Property values for AGConnProp.session.


Enum Constant Summary
DEDICATED
          Calls AGRepositoryConnection.setAutoCommit(boolean) with true.
SHARED
          No dedicated session, and autoCommit is true (that is, AGRepositoryConnection.setAutoCommit(boolean) is not called).
TX
          Calls AGRepositoryConnection.setAutoCommit(boolean) with false.
 
Method Summary
static AGConnProp.Session valueOf(String name)
          Returns the enum constant of this type with the specified name.
static AGConnProp.Session[] 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

SHARED

public static final AGConnProp.Session SHARED
No dedicated session, and autoCommit is true (that is, AGRepositoryConnection.setAutoCommit(boolean) is not called).

Warning: if the borrowed connections are changed to dedicated or shared, the connections will remain dedicated when borrowed again, but autoCommit will be reset to true.


DEDICATED

public static final AGConnProp.Session DEDICATED
Calls AGRepositoryConnection.setAutoCommit(boolean) with true.


TX

public static final AGConnProp.Session TX
Calls AGRepositoryConnection.setAutoCommit(boolean) with false.

Method Detail

values

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

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

valueOf

public static AGConnProp.Session 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 © 2008-2012 Franz Inc.