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