Package org.bson

Class BsonJavaScriptWithScope


  • public class BsonJavaScriptWithScope
    extends BsonValue
    A representation of the JavaScript Code with Scope BSON type.
    Since:
    3.0
    • Constructor Detail

      • BsonJavaScriptWithScope

        public BsonJavaScriptWithScope​(String code,
                                       BsonDocument scope)
        Construct a new instance with the given code and scope.
        Parameters:
        code - the code
        scope - the scope
    • Method Detail

      • getBsonType

        public BsonType getBsonType()
        Description copied from class: BsonValue
        Gets the BSON type of this value.
        Specified by:
        getBsonType in class BsonValue
        Returns:
        the BSON type, which may not be null (but may be BSONType.NULL)
      • getCode

        public String getCode()
        Get the code.
        Returns:
        the code
      • getScope

        public BsonDocument getScope()
        Get the scope.
        Returns:
        the scope
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object