theSq3Lite 10.0
Loading...
Searching...
No Matches
Sq3ErrorE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvsq3lite;
11
12// BEGIN-Sq3ErrorE - created by 'jv_MqS.tcl -i NHI1_HOME/theSq3Lite/c/gen/c_sq3lite.meta' - DO NOT change
13
16public enum Sq3ErrorE {
17 OK (0 ),
18 ERROR (1 ),
20 PERM (3 ),
21 ABORT (4 ),
22 BUSY (5 ),
23 LOCKED (6 ),
24 NOMEM (7 ),
27 IOERR (10 ),
28 CORRUPT (11 ),
29 NOTFOUND (12 ),
30 FULL (13 ),
31 CANTOPEN (14 ),
32 PROTOCOL (15 ),
33 EMPTY (16 ),
34 SCHEMA (17 ),
35 TOOBIG (18 ),
37 MISMATCH (20 ),
38 MISUSE (21 ),
39 NOLFS (22 ),
40 AUTH (23 ),
41 FORMAT (24 ),
42 RANGE (25 ),
43 NOTADB (26 ),
44 NOTICE (27 ),
45 WARNING (28 ),
46 ROW (100),
47 DONE (101);
48 private final int value;
49 Sq3ErrorE(int val) {this.value = val;}
50 public int get() { return value; }
51 public static Sq3ErrorE set(int val) {
52 return Sq3Lite.ErrorE_FromInt(val);
53 }
54}
55
56// END-Sq3ErrorE - 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 Sq3ErrorE → C-API
static native Sq3ErrorE ErrorE_FromInt(int value)
Java: [static] Sq3ErrorE ErrorE_FromInt(int value) → C-API return the Sq3ErrorE from integer …