18 lines
541 B
Java
18 lines
541 B
Java
// automatically generated by the FlatBuffers compiler, do not modify
|
|
|
|
package nd4j.graph;
|
|
|
|
public final class InputType {
|
|
private InputType() { }
|
|
public static final byte UNDEFINED = 0;
|
|
public static final byte NUMERIC = 1;
|
|
public static final byte STRINGULAR = 2;
|
|
public static final byte NUMERIC_SET = 3;
|
|
public static final byte STRINGULAR_SET = 4;
|
|
|
|
public static final String[] names = { "UNDEFINED", "NUMERIC", "STRINGULAR", "NUMERIC_SET", "STRINGULAR_SET", };
|
|
|
|
public static String name(int e) { return names[e]; }
|
|
}
|
|
|