theLink 10.0
Loading...
Searching...
No Matches
MqWaitOnEventE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvmqmsgque;
11
12// BEGIN-MqWaitOnEventE - created by 'jv_MqS.tcl -i NHI1_HOME/theLink/c/gen/c_mqmsgque.meta' - DO NOT change
13
16public enum MqWaitOnEventE {
17 NO (0),
18 ONCE (1),
19 OWN (2),
21 private final int value;
22 MqWaitOnEventE(int val) {this.value = val;}
23 public int get() { return value; }
24 public static MqWaitOnEventE set(int val) {
26 }
27}
28
29// END-MqWaitOnEventE - 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 MqWaitOnEventE → C-API
static native MqWaitOnEventE WaitOnEventE_FromInt(int value)
Java: [static] MqWaitOnEventE WaitOnEventE_FromInt(int value) → C-API return the MqWaitOnEventE ...