public enum JarOpErrorCode extends java.lang.Enum<JarOpErrorCode>
ErrorCode.| Modifier and Type | Field and Description |
|---|---|
private java.lang.String |
msg
The message for this error code.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString()
Returns the operation result description that can be displayed in the
UI messages.
|
static JarOpErrorCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JarOpErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JarOpErrorCode SUCCESS
public static final JarOpErrorCode NOT_FOUND
public static final JarOpErrorCode IN_CLASSPATH
public static final JarOpErrorCode ALREADY_REGISTERED
public static final JarOpErrorCode INIT_ERROR
public static final JarOpErrorCode NOT_REGISTERED
public static final JarOpErrorCode CLOSE_ERROR
public static final JarOpErrorCode BAD_LOADER
public static final JarOpErrorCode INSUFFICIENT_RIGHTS
public static final JarOpErrorCode ACTIVE_SESSIONS_PRESENT
public static final JarOpErrorCode ERROR_TERMINATING_SESSIONS
public static final JarOpErrorCode ERROR_DEREG_NETWORK_SERVER
public static final JarOpErrorCode ERROR_LOADING_HOOK
public static final JarOpErrorCode ERROR_RUN_HOOK
public static final JarOpErrorCode ERROR_LOADING_API_IFACE
public static final JarOpErrorCode ERROR_LOADING_API_IMPL
public static final JarOpErrorCode CANNOT_OPEN_DIRECTORY_BRANCH
public static final JarOpErrorCode CANNOT_MODIFY_DIRECTORY_NODE
public static final JarOpErrorCode CANNOT_COMMIT_DIRECTORY
public static final JarOpErrorCode ERROR_DELETING_NODE
public static JarOpErrorCode[] values()
for (JarOpErrorCode c : JarOpErrorCode.values()) System.out.println(c);
public static JarOpErrorCode 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 nullpublic java.lang.String toString()
toString in class java.lang.Enum<JarOpErrorCode>