theConfig 10.0
Loading...
Searching...
No Matches
LcErrorTypeE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvlcconfig;
11
12// BEGIN-LcErrorTypeE - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
13
16public enum LcErrorTypeE {
17 NONE (0),
19 PARSE (2);
20 private final int value;
21 LcErrorTypeE(int val) {this.value = val;}
22 public int get() { return value; }
23 public static LcErrorTypeE set(int val) {
24 return LcConfig.ErrorTypeE_FromInt(val);
25 }
26}
27
28// END-LcErrorTypeE - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
Java: enum LcErrorTypeE → C-API
static native LcErrorTypeE ErrorTypeE_FromInt(int value)
Java: [static] LcErrorTypeE ErrorTypeE_FromInt(int value) → C-API return the LcErrorTypeE from i...