public static enum CustomizationClass.ValuesStability extends java.lang.Enum<CustomizationClass.ValuesStability>
| Enum Constant and Description |
|---|
APPLICATION
Value does not vary within the
MDSInstance, which would
typically correspond to a Java EE application. |
GLOBAL
Value is global and will never change.
|
MDS_SESSION
Value does not vary within a single
MDSSession,
which would typically correspond to an HTTP request
in a Java EE application. |
MDS_SESSION_USER_STATE
Value does not vary across
MDSSessions using a single
UserStateHandler,
which would typically correspond to a single user login session
in a Java EE application. |
VOLATILE
Value should not be cached and must be recalculated on every
call to
CustomizationClass.getValue(oracle.mds.core.RestrictedSession, oracle.mds.core.MetadataObject). |
| Modifier and Type | Method and Description |
|---|---|
static CustomizationClass.ValuesStability |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CustomizationClass.ValuesStability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CustomizationClass.ValuesStability VOLATILE
CustomizationClass.getValue(oracle.mds.core.RestrictedSession, oracle.mds.core.MetadataObject).public static final CustomizationClass.ValuesStability MDS_SESSION
MDSSession,
which would typically correspond to an HTTP request
in a Java EE application.public static final CustomizationClass.ValuesStability MDS_SESSION_USER_STATE
MDSSessions using a single
UserStateHandler,
which would typically correspond to a single user login session
in a Java EE application.public static final CustomizationClass.ValuesStability APPLICATION
MDSInstance, which would
typically correspond to a Java EE application. If multitenancy
is enabled on the MDSInstance, this value is does not vary
within the tenant's MDSInstance.public static final CustomizationClass.ValuesStability GLOBAL
public static CustomizationClass.ValuesStability[] values()
for (CustomizationClass.ValuesStability c : CustomizationClass.ValuesStability.values()) System.out.println(c);
public static CustomizationClass.ValuesStability valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null