Package org.apache.cassandra.cql3
Class FieldIdentifier
- java.lang.Object
-
- org.apache.cassandra.cql3.FieldIdentifier
-
public class FieldIdentifier extends java.lang.Object
Identifies a field in a UDT.
-
-
Field Summary
Fields Modifier and Type Field Description java.nio.ByteBuffer
bytes
-
Constructor Summary
Constructors Constructor Description FieldIdentifier(java.nio.ByteBuffer bytes)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
static FieldIdentifier
forInternalString(java.lang.String text)
Creates aFieldIdentifier
from an internal string.static FieldIdentifier
forQuoted(java.lang.String text)
Creates aFieldIdentifier
from a quoted identifier string.static FieldIdentifier
forUnquoted(java.lang.String text)
Creates aFieldIdentifier
from an unquoted identifier string.int
hashCode()
java.lang.String
toString()
-
-
-
Method Detail
-
forUnquoted
public static FieldIdentifier forUnquoted(java.lang.String text)
Creates aFieldIdentifier
from an unquoted identifier string.
-
forQuoted
public static FieldIdentifier forQuoted(java.lang.String text)
Creates aFieldIdentifier
from a quoted identifier string.
-
forInternalString
public static FieldIdentifier forInternalString(java.lang.String text)
Creates aFieldIdentifier
from an internal string.
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
hashCode
public final int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public final boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
-