Example usage for org.apache.cassandra.db.marshal AbstractType subclass-usage

List of usage examples for org.apache.cassandra.db.marshal AbstractType subclass-usage

Introduction

In this page you can find the example usage for org.apache.cassandra.db.marshal AbstractType subclass-usage.

Usage

From source file com.blockwithme.longdb.cassandra.ReverseColumnComparator.java

/** Compares Column IDs and returns result in reverse order, This class must be
 * supplied to Cassandra server library so that it can be loaded by Cassandra
 * process. */
@ParametersAreNonnullByDefault
public final class ReverseColumnComparator extends AbstractType<Long> {

From source file com.canonical.dpkgversiontype.DpkgVersionType.java

public class DpkgVersionType extends AbstractType<String> {
    public static final DpkgVersionType instance = new DpkgVersionType();

    DpkgVersionType() {
    } // singleton

From source file com.spotify.heroic.ext.marshal.SafeUTF8Type.java

/**
 * An extension to the {@link UTF8Type} to allow for null and empty values.
 *
 * @author udoprog
 */
public class SafeUTF8Type extends AbstractType<String> {

From source file comparators.CompositeType.java

/**
 * CompositeType comparer for Cassandra columns.
 * <p>
 * CompositeType is a comparer that allows you to combine the existing Cassandra
 * types into a composite type that will then be compared correctly for each of
 * the component types.