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