Package org.bson

Class BsonJavaScriptWithScope

java.lang.Object
org.bson.BsonValue
org.bson.BsonJavaScriptWithScope

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

    • 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 Details

    • 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
    • equals

      public boolean equals(Object o)
      Overrides:
      equals in class Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object