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