theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3ConfigE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3ConfigE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3ConfigE {
20 MALLOC (4 ),
22 SCRATCH (6 ),
24 HEAP (8 ),
26 MUTEX (10),
29 PCACHE (14),
31 LOG (16),
32 URI (17),
33 PCACHE2 (18),
36 SQLLOG (21),
40 PMASZ (25),
45 private final int value;
46 Sq3ConfigE(int val) {this.value = val;}
47 public int get() { return value; }
48 public static Sq3ConfigE set(int val) {
49 return Sq3Lite.ConfigE_FromInt(val);
50 }
51}
52
53// END-Sq3ConfigE - 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 Sq3ConfigE → C-API
static native Sq3ConfigE ConfigE_FromInt(int value)
Java: [static] Sq3ConfigE ConfigE_FromInt(int value) → C-API return the Sq3ConfigE from integer ...