public enum LazyLoadingStrategy extends Enum<LazyLoadingStrategy>
Enum Constant and Description |
---|
COMPLETE
Loaded with all childs.
|
DEFAULT |
PARTIAL
Only the item itself is loaded.
|
Modifier and Type | Method and Description |
---|---|
static LazyLoadingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LazyLoadingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LazyLoadingStrategy DEFAULT
public static final LazyLoadingStrategy COMPLETE
public static final LazyLoadingStrategy PARTIAL
public static LazyLoadingStrategy[] values()
for (LazyLoadingStrategy c : LazyLoadingStrategy.values()) System.out.println(c);
public static LazyLoadingStrategy valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullCopyright © 2016 SAPERION AG. All rights reserved.