|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<LazyToOneOption> org.hibernate.annotations.LazyToOneOption
public enum LazyToOneOption
Lazy options available for a ToOne association
Enum Constant Summary | |
---|---|
FALSE
eagerly load the association |
|
NO_PROXY
Lazy, give back the real object loaded when a reference is requested (Bytecode enhancement is mandatory for this option, fall back to PROXY if the class is not enhanced) This option should be avoided unless you can't afford the use of proxies |
|
PROXY
Lazy, give back a proxy which will be loaded when the state is requested This should be the prefered option |
Method Summary | |
---|---|
static LazyToOneOption |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static LazyToOneOption[] |
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 |
---|
public static final LazyToOneOption FALSE
public static final LazyToOneOption PROXY
public static final LazyToOneOption NO_PROXY
Method Detail |
---|
public static LazyToOneOption[] values()
for (LazyToOneOption c : LazyToOneOption.values()) System.out.println(c);
public static LazyToOneOption valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |