theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3DbConfigE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3DbConfigE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3DbConfigE {
17 MAINDBNAME (1000),
18 LOOKASIDE (1001),
27 DEFENSIVE (1010),
30 DQS_DML (1013),
31 DQS_DDL (1014),
37 MAX (1019);
38 private final int value;
39 Sq3DbConfigE(int val) {this.value = val;}
40 public int get() { return value; }
41 public static Sq3DbConfigE set(int val) {
42 return Sq3Lite.DbConfigE_FromInt(val);
43 }
44}
45
46// END-Sq3DbConfigE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
Sq3Lite PACKAGE - toplevel package of the Programming-Language-Micro-Kernel (PLMK) …
Definition Sq3Lite.java:125
Java: enum Sq3DbConfigE → C-API
static native Sq3DbConfigE DbConfigE_FromInt(int value)
Java: [static] Sq3DbConfigE DbConfigE_FromInt(int value) → C-API return the Sq3DbConfigE from in...