theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3TestCtrlE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3TestCtrlE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3TestCtrlE {
17 FIRST (5 ),
26 ASSERT (12),
27 ALWAYS (13),
28 RESERVE (14),
39 ISINIT (23),
48 TUNE (32),
49 LOGEST (33),
51 LAST (34);
52 private final int value;
53 Sq3TestCtrlE(int val) {this.value = val;}
54 public int get() { return value; }
55 public static Sq3TestCtrlE set(int val) {
56 return Sq3Lite.TestCtrlE_FromInt(val);
57 }
58}
59
60// END-Sq3TestCtrlE - 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 Sq3TestCtrlE → C-API
static native Sq3TestCtrlE TestCtrlE_FromInt(int value)
Java: [static] Sq3TestCtrlE TestCtrlE_FromInt(int value) → C-API return the Sq3TestCtrlE from in...