Package io.deephaven.enterprise.codec


package io.deephaven.enterprise.codec
  • Classes
    Class
    Description
    An ObjectCodec that encodes a byte[] using one integer to indicate the array size and then the array items sequentially.
    An ObjectCodec that encodes a char[] using one integer to indicate the array size and then the array items sequentially.
    An ObjectCodec that encodes a double[] using one integer to indicate the array size and then the array items sequentially.
    An ObjectCodec that encodes a float[] using one integer to indicate the array size and then the array items sequentially.
    An ObjectCodec that encodes a int[] using one integer to indicate the array size and then the array items sequentially.
    An ObjectCodec that encodes a long[] using one integer to indicate the array size and then the array items sequentially.
    An ObjectCodec that encodes a short[] using one integer to indicate the array size and then the array items sequentially.
    An ObjectCodec that encodes a String[] using one integer to indicate the array size and then each array item is written using one int to represent length followed by the bytes for that item.