theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3StmtStatusE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3StmtStatusE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3StmtStatusE {
18 SORT (2 ),
20 VM_STEP (4 ),
22 RUN (6 ),
25 MEMUSED (99);
26 private final int value;
27 Sq3StmtStatusE(int val) {this.value = val;}
28 public int get() { return value; }
29 public static Sq3StmtStatusE set(int val) {
30 return Sq3Lite.StmtStatusE_FromInt(val);
31 }
32}
33
34// END-Sq3StmtStatusE - 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 Sq3StmtStatusE → C-API
static native Sq3StmtStatusE StmtStatusE_FromInt(int value)
Java: [static] Sq3StmtStatusE StmtStatusE_FromInt(int value) → C-API return the Sq3StmtStatusE f...