public enum EnforceEnterpriseCollectionBehaviorState extends Enum<EnforceEnterpriseCollectionBehaviorState>
PersistentCollection
extensions in the Enterprise module will delegate
to the standard Hibernate behavior. This is useful when the desire is to build and persist entity object structures (that
the Enterprise module would otherwise interpret as sandboxable) without interference from the Enterprise module
on the collection persistence behavior. When the Enterprise module is loaded, the behavior is enforced by default.Modifier and Type | Method and Description |
---|---|
static EnforceEnterpriseCollectionBehaviorState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnforceEnterpriseCollectionBehaviorState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnforceEnterpriseCollectionBehaviorState TRUE
public static final EnforceEnterpriseCollectionBehaviorState FALSE
public static final EnforceEnterpriseCollectionBehaviorState UNDEFINED
public static EnforceEnterpriseCollectionBehaviorState[] values()
for (EnforceEnterpriseCollectionBehaviorState c : EnforceEnterpriseCollectionBehaviorState.values()) System.out.println(c);
public static EnforceEnterpriseCollectionBehaviorState 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 © 2022. All rights reserved.