Class CqlIdentifier

java.lang.Object
org.springframework.data.cassandra.core.cql.CqlIdentifier
All Implemented Interfaces:
Serializable, Comparable<CqlIdentifier>

@Deprecated public final class CqlIdentifier extends Object implements Comparable<CqlIdentifier>, Serializable
Deprecated.
since 3.0, use CqlIdentifier instead.
This encapsulates the logic for CQL quoted and unquoted identifiers.

CQL identifiers, when unquoted, are converted to lower case. When quoted, they are returned as-is with no lower casing and encased in double quotes. To render, use any of the methods toCql(), toCql(StringBuilder), or toString().

Author:
John McPeek, Matthew T. Adams, Mark Paluch, John Blum
See Also: