Class UTF8StringAsByteArrayCodec

java.lang.Object
io.deephaven.util.codec.UTF8StringAsByteArrayCodec
All Implemented Interfaces:
ObjectCodec<String>, ObjectDecoder<String>

public class UTF8StringAsByteArrayCodec extends Object implements ObjectCodec<String>

Codec for non-nullable Strings from UTF8 byte arrays.

One particular instance where this is useful is reading parquet 1.0 data encoded as binary as String.

  • Constructor Details

    • UTF8StringAsByteArrayCodec

      public UTF8StringAsByteArrayCodec(@Nullable @Nullable String arguments)
  • Method Details

    • encode

      public byte @NotNull [] encode(@Nullable @Nullable String input)
      Description copied from interface: ObjectCodec
      Encode the specified input as an array of bytes. Note that it is up to the implementation how to encode null inputs. The use of a zero-length byte array is strongly encouraged.
      Specified by:
      encode in interface ObjectCodec<String>
      Parameters:
      input - The input object, possibly null
      Returns:
      The output byte array
    • isNullable

      public boolean isNullable()
      Description copied from interface: ObjectCodec
      Does this codec support encoding of null values?
      Specified by:
      isNullable in interface ObjectCodec<String>
      Returns:
      if null values are supported
    • getPrecision

      public int getPrecision()
      Description copied from interface: ObjectCodec
      If applicable, the maximum encodable precision. If precision is not applicable (i.e. for non-numeric types) this method should return zero.
      Specified by:
      getPrecision in interface ObjectCodec<String>
      Returns:
      the numeric precision supported by this codec
    • getScale

      public int getScale()
      Description copied from interface: ObjectCodec
      If applicable, the maximum encodable scale. If scale is not applicable (i.e. for non-numeric types) this method should return zero.
      Specified by:
      getScale in interface ObjectCodec<String>
      Returns:
      the numeric scale (digits after the decimal point) supported by this codec
    • decode

      @Nullable public @Nullable String decode(byte @NotNull [] input, int offset, int length)
      Description copied from interface: ObjectDecoder
      Decode an object from an array of bytes.
      Specified by:
      decode in interface ObjectDecoder<String>
      Parameters:
      input - The input byte array containing bytes to decode
      offset - The offset into the byte array to start decoding from
      length - The number of bytes to decode, starting at the offset
      Returns:
      The output object, possibly null
    • expectedObjectWidth

      public int expectedObjectWidth()
      Description copied from interface: ObjectDecoder
      What width byte array does this ObjectCodec expect to encode and decode?
      Specified by:
      expectedObjectWidth in interface ObjectDecoder<String>
      Returns:
      VARIABLE_WIDTH_SENTINEL if the codec must encode and decode variable width columns, otherwise the fixed size of byte array that must be decoded and encoded.