theLink 10.0
Loading...
Searching...
No Matches
MqSlaveE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvmqmsgque;
11
12// BEGIN-MqSlaveE - created by 'jv_MqS.tcl -i NHI1_HOME/theLink/c/gen/c_mqmsgque.meta' - DO NOT change
13
16public enum MqSlaveE {
18 FILTER (1 ),
19 MASTER (1 ),
20 OTHER (1 ),
21 USER (10 ),
22 MAX (1024);
23 private final int value;
24 MqSlaveE(int val) {this.value = val;}
25 public int get() { return value; }
26 public static MqSlaveE set(int val) {
27 return MqMsgque.SlaveE_FromInt(val);
28 }
29}
30
31// END-MqSlaveE - created by 'jv_MqS.tcl -i NHI1_HOME/theLink/c/gen/c_mqmsgque.meta' - DO NOT change
MqMsgque PACKAGE - the package is the toplevel structure of the jvmqmsgque …
Java: enum MqSlaveE → C-API
Definition MqSlaveE.java:16
static native MqSlaveE SlaveE_FromInt(int value)
Java: [static] MqSlaveE SlaveE_FromInt(int value) → C-API return the MqSlaveE from integer …