Package org.apache.openjpa.jdbc.conf
Class FetchModeValue
- java.lang.Object
-
- org.apache.openjpa.lib.conf.Value
-
- org.apache.openjpa.lib.conf.IntValue
-
- org.apache.openjpa.jdbc.conf.FetchModeValue
-
- All Implemented Interfaces:
java.lang.Cloneable
public class FetchModeValue extends IntValue
Value type used to represent fetch modes. This type is defined separately so that it can be used both in the global configuration and in class metadata with the same encapsulated configuration.- Author:
- Abe White
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
EAGER_JOIN
static java.lang.String
EAGER_NONE
static java.lang.String
EAGER_PARALLEL
-
Constructor Summary
Constructors Constructor Description FetchModeValue(java.lang.String prop)
-
Method Summary
-
Methods inherited from class org.apache.openjpa.lib.conf.IntValue
get, getInternalString, getValueType, set, setInternalObject, setInternalString
-
Methods inherited from class org.apache.openjpa.lib.conf.Value
addEquivalentKey, addListener, alias, alias, assertChangeable, clone, equals, getAliases, getDefault, getEquivalentKeys, getInstantiatingGetter, getListeners, getLoadKey, getOriginalValue, getProperty, getPropertyKeys, getScope, getString, hashCode, hide, isAliasListComprehensive, isDynamic, isHidden, isPrivate, makePrivate, matches, removeListener, setAlias, setAlias, setAliases, setAliasListComprehensive, setDefault, setDynamic, setInstantiatingGetter, setLoadKey, setObject, setProperty, setScope, setString, toString, unalias, unalias, valueChanged
-
-
-
-
Field Detail
-
EAGER_NONE
public static final java.lang.String EAGER_NONE
- See Also:
- Constant Field Values
-
EAGER_JOIN
public static final java.lang.String EAGER_JOIN
- See Also:
- Constant Field Values
-
EAGER_PARALLEL
public static final java.lang.String EAGER_PARALLEL
- See Also:
- Constant Field Values
-
-