theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3AuthActionE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3AuthActionE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3AuthActionE {
25 DELETE (9 ),
34 INSERT (18),
35 PRAGMA (19),
36 READ (20),
37 SELECT (21),
39 UPDATE (23),
40 ATTACH (24),
41 DETACH (25),
43 REINDEX (27),
44 ANALYZE (28),
49 COPY (0 ),
51 private final int value;
52 Sq3AuthActionE(int val) {this.value = val;}
53 public int get() { return value; }
54 public static Sq3AuthActionE set(int val) {
55 return Sq3Lite.AuthActionE_FromInt(val);
56 }
57}
58
59// END-Sq3AuthActionE - 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 Sq3AuthActionE → C-API
static native Sq3AuthActionE AuthActionE_FromInt(int value)
Java: [static] Sq3AuthActionE AuthActionE_FromInt(int value) → C-API return the Sq3AuthActionE f...