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