Package org.apache.cassandra.cql3
Class FieldIdentifier
- java.lang.Object
-
- org.apache.cassandra.cql3.FieldIdentifier
-
public class FieldIdentifier extends java.lang.ObjectIdentifies a field in a UDT.
-
-
Field Summary
Fields Modifier and Type Field Description java.nio.ByteBufferbytes
-
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 booleanequals(java.lang.Object o)static FieldIdentifierforInternalString(java.lang.String text)Creates aFieldIdentifierfrom an internal string.static FieldIdentifierforQuoted(java.lang.String text)Creates aFieldIdentifierfrom a quoted identifier string.static FieldIdentifierforUnquoted(java.lang.String text)Creates aFieldIdentifierfrom an unquoted identifier string.inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
forUnquoted
public static FieldIdentifier forUnquoted(java.lang.String text)
Creates aFieldIdentifierfrom an unquoted identifier string.
-
forQuoted
public static FieldIdentifier forQuoted(java.lang.String text)
Creates aFieldIdentifierfrom a quoted identifier string.
-
forInternalString
public static FieldIdentifier forInternalString(java.lang.String text)
Creates aFieldIdentifierfrom an internal string.
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public final boolean equals(java.lang.Object o)
- Overrides:
equalsin classjava.lang.Object
-
-