io.deephaven.barrage.flatbuf.ColumnConversionMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of barrage-format Show documentation
Show all versions of barrage-format Show documentation
Generated Java files from the IPC Flatbuffer definitions.
The newest version!
// automatically generated by the FlatBuffers compiler, do not modify
package io.deephaven.barrage.flatbuf;
/**
* There will always be types that cannot be easily supported over IPC. These are the options:
* Stringify (default) - Pretend the column is a string when sending over Arrow Flight (default)
* JavaSerialization - Use java serialization; the client is responsible for the deserialization
* ThrowError - Refuse to send the column and throw an internal error sharing as much detail as possible
*/
public final class ColumnConversionMode {
private ColumnConversionMode() { }
public static final byte Stringify = 1;
public static final byte JavaSerialization = 2;
public static final byte ThrowError = 3;
public static final String[] names = { "Stringify", "JavaSerialization", "ThrowError", };
public static String name(int e) { return names[e - Stringify]; }
}