All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.deephaven.barrage.flatbuf.ColumnConversionMode Maven / Gradle / Ivy

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]; }
}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy