Skip navigation links
oracle.adf.share
Enum ResourceKey
java.lang.Object
java.lang.Enum<ResourceKey>
oracle.adf.share.ResourceKey
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ResourceKey>
-
public enum ResourceKey
- extends java.lang.Enum<ResourceKey>
Method Summary |
static ResourceKey |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ResourceKey[] |
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 |
DEFAULT
public static final ResourceKey DEFAULT
XML_PARSING_ERROR
public static final ResourceKey XML_PARSING_ERROR
XML_SYNTAX_ERROR
public static final ResourceKey XML_SYNTAX_ERROR
CLOSE_CFG_STREAM
public static final ResourceKey CLOSE_CFG_STREAM
CALLBACK_PARSING_ERROR
public static final ResourceKey CALLBACK_PARSING_ERROR
MDS_SESSION_CREATE_ERROR
public static final ResourceKey MDS_SESSION_CREATE_ERROR
MDS_CUST_CONFIG_ERROR
public static final ResourceKey MDS_CUST_CONFIG_ERROR
MDS_TENANT_INSTANCE_ERROR
public static final ResourceKey MDS_TENANT_INSTANCE_ERROR
MDS_CONFIGURATION_ERROR
public static final ResourceKey MDS_CONFIGURATION_ERROR
MDS_EXCEPTION
public static final ResourceKey MDS_EXCEPTION
ADF_SESSOPTS_EDIT_REV_NUM_MISMATCH
public static final ResourceKey ADF_SESSOPTS_EDIT_REV_NUM_MISMATCH
ADF_SESSOPTS_CANT_CHANGE_LABEL_WITH_SB
public static final ResourceKey ADF_SESSOPTS_CANT_CHANGE_LABEL_WITH_SB
ADF_SESSOPTS_LABEL_NOT_FOUND
public static final ResourceKey ADF_SESSOPTS_LABEL_NOT_FOUND
ADF_SESSOPTS_TRIM_CC_INPUT_NOT_FOUND
public static final ResourceKey ADF_SESSOPTS_TRIM_CC_INPUT_NOT_FOUND
ADF_SESSOPTS_ILLEGAL_OPERATION_IN_SANDBOX
public static final ResourceKey ADF_SESSOPTS_ILLEGAL_OPERATION_IN_SANDBOX
ADF_SESSOPTS_SET_SANDBOX_SETTINGS_CC_NAME_MISMATCH
public static final ResourceKey ADF_SESSOPTS_SET_SANDBOX_SETTINGS_CC_NAME_MISMATCH
ADF_SESSOPTS_SANDBOX_NAME_MISMATCH
public static final ResourceKey ADF_SESSOPTS_SANDBOX_NAME_MISMATCH
ADF_SESSOPTS_LABEL_NAME_MISMATCH
public static final ResourceKey ADF_SESSOPTS_LABEL_NAME_MISMATCH
ADF_SESSOPTS_TRIM_CC_NAME_MISMATCH
public static final ResourceKey ADF_SESSOPTS_TRIM_CC_NAME_MISMATCH
values
public static ResourceKey[] values()
- Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ResourceKey c : ResourceKey.values())
System.out.println(c);
-
- Returns:
- an array containing the constants of this enum type, in the order they are declared
valueOf
public static ResourceKey valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified name
java.lang.NullPointerException
- if the argument is null
Skip navigation links
Copyright © 1997, 2016, Oracle. All rights reserved.