theConfig 10.0
Loading...
Searching...
No Matches
LcConfigTypeE.java
Go to the documentation of this file.
1
9/* LABEL-NO */
10package jvlcconfig;
11
12// BEGIN-LcConfigTypeE - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
13
16public enum LcConfigTypeE {
17 NONE (0),
18 GROUP (1),
19 INT (2),
20 INT64 (3),
21 FLOAT (4),
22 STRING (5),
23 BOOL (6),
24 ARRAY (7),
25 LIST (8);
26 private final int value;
27 LcConfigTypeE(int val) {this.value = val;}
28 public int get() { return value; }
29 public static LcConfigTypeE set(int val) {
30 return LcConfig.ConfigTypeE_FromInt(val);
31 }
32}
33
34// END-LcConfigTypeE - created by 'jv_MqS.tcl -i NHI1_HOME/theConfig/c/gen/c_lcconfig.meta' - DO NOT change
Java: enum LcConfigTypeE → C-API
static native LcConfigTypeE ConfigTypeE_FromInt(int value)
Java: [static] LcConfigTypeE ConfigTypeE_FromInt(int value) → C-API return the LcConfigTypeE fro...