Enum CometCScriptFunction.ErrorReporting
- java.lang.Object
-
- java.lang.Enum<CometCScriptFunction.ErrorReporting>
-
- com.priint.pubserver.comet.bridge.CometCScriptFunction.ErrorReporting
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometCScriptFunction.ErrorReporting>
- Enclosing class:
- CometCScriptFunction
public static enum CometCScriptFunction.ErrorReporting extends java.lang.Enum<CometCScriptFunction.ErrorReporting>
The enum Error reporting.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CometCScriptFunction.ErrorReportingvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometCScriptFunction.ErrorReporting[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER
public static final CometCScriptFunction.ErrorReporting USER
Use the default error reporting, i.e.: log error to Plug-In log file and return the value as defined for this cscript function
-
ALERT
public static final CometCScriptFunction.ErrorReporting ALERT
Show error cause in an alert box.
-
LOCALIZED
public static final CometCScriptFunction.ErrorReporting LOCALIZED
Show localized error cause in an alert box.
-
-
Method Detail
-
values
public static CometCScriptFunction.ErrorReporting[] 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 (CometCScriptFunction.ErrorReporting c : CometCScriptFunction.ErrorReporting.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometCScriptFunction.ErrorReporting 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 namejava.lang.NullPointerException- if the argument is null
-
-