com.scalar.db.storage.dynamo.bytes.BytesEncoders Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of scalardb Show documentation
Show all versions of scalardb Show documentation
A universal transaction manager that achieves database-agnostic transactions and distributed transactions that span multiple databases
package com.scalar.db.storage.dynamo.bytes;
public final class BytesEncoders {
public static final BooleanBytesEncoder BOOLEAN = new BooleanBytesEncoder();
public static final IntBytesEncoder INT = new IntBytesEncoder();
public static final BigIntBytesEncoder BIGINT = new BigIntBytesEncoder();
public static final FloatBytesEncoder FLOAT = new FloatBytesEncoder();
public static final DoubleBytesEncoder DOUBLE = new DoubleBytesEncoder();
public static final TextBytesEncoder TEXT = new TextBytesEncoder();
public static final BlobBytesEncoder BLOB = new BlobBytesEncoder();
}