Package org.bson.types
Class Symbol
- java.lang.Object
-
- org.bson.types.Symbol
-
- All Implemented Interfaces:
java.io.Serializable
public class Symbol extends java.lang.Object implements java.io.SerializableClass to hold an instance of the BSON symbol type.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Symbol(java.lang.String symbol)Construct a new instance with the given symbol.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object o)Will compare equal to a String that is equal to the String that this holdsjava.lang.StringgetSymbol()Gets the symbol.inthashCode()java.lang.StringtoString()
-
-
-
Method Detail
-
getSymbol
public java.lang.String getSymbol()
Gets the symbol.- Returns:
- the symbol
-
equals
public boolean equals(java.lang.Object o)
Will compare equal to a String that is equal to the String that this holds- Overrides:
equalsin classjava.lang.Object- Parameters:
o- the Symbol to compare this to- Returns:
- true if parameter o is the same as this Symbol
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-