Package org.bson

Class BsonElement


  • public class BsonElement
    extends Object
    A mapping from a name to a BsonValue.
    Since:
    3.0
    See Also:
    BsonDocument
    • Constructor Detail

      • BsonElement

        public BsonElement​(String name,
                           BsonValue value)
        Construct a new instance with the given key and value
        Parameters:
        name - the non-null key
        value - the non-null value
    • Method Detail

      • getName

        public String getName()
        Gets the name of the key/field.
        Returns:
        the name of the field.
      • getValue

        public BsonValue getValue()
        Gets the value of this element.
        Returns:
        a BsonValue containing the value of this element.
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object