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