theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3ScanStatE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3ScanStatE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3ScanStatE {
17 NLOOP (0),
18 NVISIT (1),
19 EST (2),
20 NAME (3),
24 NCYCLE (7);
25 private final int value;
26 Sq3ScanStatE(int val) {this.value = val;}
27 public int get() { return value; }
28 public static Sq3ScanStatE set(int val) {
29 return Sq3Lite.ScanStatE_FromInt(val);
30 }
31}
32
33// END-Sq3ScanStatE - 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 Sq3ScanStatE → C-API
static native Sq3ScanStatE ScanStatE_FromInt(int value)
Java: [static] Sq3ScanStatE ScanStatE_FromInt(int value) → C-API return the Sq3ScanStatE from in...