theLink 10.0
Loading...
Searching...
No Matches
MqIoComE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvmqmsgque;
11
12// BEGIN-MqIoComE - created by 'jv_MqS.tcl -i NHI1_HOME/theLink/c/.libmqmsgque.meta' - DO NOT change
13
16 public enum MqIoComE {
17 PIPE(0),
18 UDS(1),
19 TCP(2),
20 INIT(3),
21 LOOP(4);
22 private final int number;
23 MqIoComE(int number) {this.number = number;}
24 public int get() { return number; }
25 public static MqIoComE set(int value) {return MqIoComE.class.getEnumConstants()[value];}
26 }
27// END-MqIoComE - created by 'jv_MqS.tcl -i NHI1_HOME/theLink/c/.libmqmsgque.meta' - DO NOT change
→ C-API: MqIoComE
Definition MqIoComE.java:16
MqIoComE(int number)
Definition MqIoComE.java:23