Enum CometBridgeRemote.InternalCall
- java.lang.Object
-
- java.lang.Enum<CometBridgeRemote.InternalCall>
-
- com.priint.pubserver.comet.bridge.CometBridgeRemote.InternalCall
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<CometBridgeRemote.InternalCall>
- Enclosing interface:
- CometBridgeRemote
public static enum CometBridgeRemote.InternalCall extends java.lang.Enum<CometBridgeRemote.InternalCall>
The enum Internal call.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTIVATE_TRACEActivate trace internal call.DEACTIVATE_TRACEDeactivate trace internal call.END_TRANSACTIONEnd transaction internal call.GET_NEWIDGet newid internal call.GET_TRACE_STATUSGet trace status internal call.SESSION_MODESession mode internal call.START_TRANSACTIONStart transaction internal call.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCommand()Gets command.static CometBridgeRemote.InternalCallvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static CometBridgeRemote.InternalCall[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SESSION_MODE
public static final CometBridgeRemote.InternalCall SESSION_MODE
Session mode internal call.
-
GET_NEWID
public static final CometBridgeRemote.InternalCall GET_NEWID
Get newid internal call.
-
START_TRANSACTION
public static final CometBridgeRemote.InternalCall START_TRANSACTION
Start transaction internal call.
-
END_TRANSACTION
public static final CometBridgeRemote.InternalCall END_TRANSACTION
End transaction internal call.
-
ACTIVATE_TRACE
public static final CometBridgeRemote.InternalCall ACTIVATE_TRACE
Activate trace internal call.
-
GET_TRACE_STATUS
public static final CometBridgeRemote.InternalCall GET_TRACE_STATUS
Get trace status internal call.
-
DEACTIVATE_TRACE
public static final CometBridgeRemote.InternalCall DEACTIVATE_TRACE
Deactivate trace internal call.
-
-
Method Detail
-
values
public static CometBridgeRemote.InternalCall[] 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 (CometBridgeRemote.InternalCall c : CometBridgeRemote.InternalCall.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CometBridgeRemote.InternalCall 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
-
getCommand
public java.lang.String getCommand()
Gets command.- Returns:
- the command
-
-