Enum CometCScriptFunction.Mode
- java.lang.Object
-
- java.lang.Enum<CometCScriptFunction.Mode>
-
- com.priint.pubserver.comet.bridge.CometCScriptFunction.Mode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometCScriptFunction.Mode>
- Enclosing class:
- CometCScriptFunction
public static enum CometCScriptFunction.Mode extends java.lang.Enum<CometCScriptFunction.Mode>
The enum Mode.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASYNCHRONOUSAsynchronous mode.SYNCHRONOUSSynchronous mode.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CometCScriptFunction.ModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometCScriptFunction.Mode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SYNCHRONOUS
public static final CometCScriptFunction.Mode SYNCHRONOUS
Synchronous mode.
-
ASYNCHRONOUS
public static final CometCScriptFunction.Mode ASYNCHRONOUS
Asynchronous mode.
-
-
Method Detail
-
values
public static CometCScriptFunction.Mode[] 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.Mode c : CometCScriptFunction.Mode.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.Mode 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
-
-