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