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