theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3SerializeE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3SerializeE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3SerializeE {
17 NO (0), // 0x000
18 NOCOPY (1); // 0x001
19 private final int value;
20 Sq3SerializeE(int val) {this.value = val;}
21 public int get() { return value; }
22 public static Sq3SerializeE set(int val) {
23 return Sq3Lite.SerializeE_FromInt(val);
24 }
25}
26
27// END-Sq3SerializeE - 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 Sq3SerializeE → C-API
static native Sq3SerializeE SerializeE_FromInt(int value)
Java: [static] Sq3SerializeE SerializeE_FromInt(int value) → C-API return the Sq3SerializeE from...