theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3TypeE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3TypeE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3TypeE {
18 FLOAT (2),
19 BLOB (4),
20 NULL (5),
21 TEXT (3);
22 private final int value;
23 Sq3TypeE(int val) {this.value = val;}
24 public int get() { return value; }
25 public static Sq3TypeE set(int val) {
26 return Sq3Lite.TypeE_FromInt(val);
27 }
28}
29
30// END-Sq3TypeE - 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 Sq3TypeE → C-API
Definition Sq3TypeE.java:16
static native Sq3TypeE TypeE_FromInt(int value)
Java: [static] Sq3TypeE TypeE_FromInt(int value) → C-API return the Sq3TypeE from integer …