theConfig 10.0
Loading...
Searching...
No Matches
LcConfigOptionsEF.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvlcconfig;
11
12// BEGIN-LcConfigOptionsEF - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
13
16public class LcConfigOptionsEF {
17 public enum Set {
18 NONE (0 ), // 0x0
19 AUTOCONVERT (1 ), // 0x01
25 FSYNC (64 ), // 0x40
26 ALLOW_OVERRIDES (128); // 0x80
27 public final int val;
28 Set(int val) {this.val = val;}
29 public int get() { return val; }
30 }
31 private final int flag;
32 private LcConfigOptionsEF(int flg) {
33 this.flag = flg;
34 }
35 public int get() { return flag; }
36 public String toString() {
38 }
39 public boolean equals(LcConfigOptionsEF other) {
40 return this.flag == other.flag;
41 }
42 static public LcConfigOptionsEF AND(LcConfigOptionsEF.Set... vals) {
43 int flag = 0;
44 for (int i = 0; i < vals.length; i++) {
45 flag&=vals[i].val;
46 }
47 return new LcConfigOptionsEF(flag);
48 }
49 static public LcConfigOptionsEF set(int val) {
51 }
52}
53
54// END-LcConfigOptionsEF - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
Java: enum LcConfigOptionsEF → C-API
boolean equals(LcConfigOptionsEF other)
static LcConfigOptionsEF AND(LcConfigOptionsEF.Set... vals)
LcConfigOptionsEF
define the configuration-option of a LcConfigC …
Definition LcEnum_lc.h:134
static native LcConfigOptionsEF ConfigOptionsEF_FromInt(int value)
Java: [static] LcConfigOptionsEF ConfigOptionsEF_FromInt(int value) → C-API return the LcConfigO...
static native String ConfigOptionsEF_ToString(LcConfigOptionsEF value)
Java: [static] String ConfigOptionsEF_ToString(LcConfigOptionsEF value) → C-API return the LcCon...