theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3LimitE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3LimitE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3LimitE {
17 LENGTH (0 ),
19 COLUMN (2 ),
22 VDBE_OP (5 ),
29 private final int value;
30 Sq3LimitE(int val) {this.value = val;}
31 public int get() { return value; }
32 public static Sq3LimitE set(int val) {
33 return Sq3Lite.LimitE_FromInt(val);
34 }
35}
36
37// END-Sq3LimitE - 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 Sq3LimitE → C-API
static native Sq3LimitE LimitE_FromInt(int value)
Java: [static] Sq3LimitE LimitE_FromInt(int value) → C-API return the Sq3LimitE from integer …