public class StringElement extends AbstractElement
Modifier and Type | Field and Description |
---|---|
static ElementType |
TYPE
The BSON type for a string.
|
ELEMENT_TYPE
Constructor and Description |
---|
StringElement(String name,
String value)
Constructs a new
StringElement . |
Modifier and Type | Method and Description |
---|---|
void |
accept(Visitor visitor)
Accepts the visitor and calls the
Visitor.visitString(java.lang.String, java.lang.String) method. |
boolean |
equals(Object object)
Determines if the passed object is of this same type as this object and
if so that its fields are equal.
|
ElementType |
getType()
Returns the type for the BSON type.
|
String |
getValue()
Returns the BSON string value.
|
int |
hashCode()
Computes a reasonable hash code.
|
StringElement |
withName(String name)
Creates a new element with the same type and value as this element but
with the specified name.
|
public static final ElementType TYPE
public StringElement(String name, String value)
StringElement
.name
- The name for the BSON string.value
- The BSON string value.IllegalArgumentException
- If the name
or value
is null
.public void accept(Visitor visitor)
Visitor.visitString(java.lang.String, java.lang.String)
method.visitor
- The visitor for the element.Element.accept(Visitor)
public boolean equals(Object object)
equals
in class AbstractElement
object
- The object to compare to.Object.equals(java.lang.Object)
public ElementType getType()
public String getValue()
public int hashCode()
hashCode
in class AbstractElement
public StringElement withName(String name)
Returns a new StringElement
.
name
- The new name for the element.Copyright © 2011-2013 Allanbank Consulting, Inc.. All Rights Reserved.