Class Binary

java.lang.Object
org.bson.types.Binary
All Implemented Interfaces:
Serializable

@Deprecated(since="2022-10-31") public class Binary extends Object implements Serializable
Deprecated.
Usage of this API is not supported in AEM as a Cloud Service.
Generic binary holder.
See Also:
  • Constructor Summary

    Constructors
    Constructor
    Description
    Binary(byte[] data)
    Deprecated.
    Creates a Binary object with the default binary type of 0
    Binary(byte type, byte[] data)
    Deprecated.
    Creates a Binary object
    Binary(BsonBinarySubType type, byte[] data)
    Deprecated.
    Creates a Binary with the specified type and data.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Deprecated.
     
    byte[]
    Deprecated.
    Get a copy of the binary value.
    byte
    Deprecated.
    Get the binary sub type as a byte.
    int
    Deprecated.
     
    int
    Deprecated.
    Get the length of the data.

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • Binary

      public Binary(byte[] data)
      Deprecated.
      Creates a Binary object with the default binary type of 0
      Parameters:
      data - raw data
    • Binary

      public Binary(BsonBinarySubType type, byte[] data)
      Deprecated.
      Creates a Binary with the specified type and data.
      Parameters:
      type - the binary type
      data - the binary data
    • Binary

      public Binary(byte type, byte[] data)
      Deprecated.
      Creates a Binary object
      Parameters:
      type - type of the field as encoded in BSON
      data - raw data
  • Method Details

    • getType

      public byte getType()
      Deprecated.
      Get the binary sub type as a byte.
      Returns:
      the binary sub type as a byte.
    • getData

      public byte[] getData()
      Deprecated.
      Get a copy of the binary value.
      Returns:
      a copy of the binary value.
    • length

      public int length()
      Deprecated.
      Get the length of the data.
      Returns:
      the length of the binary array.
    • equals

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

      public int hashCode()
      Deprecated.
      Overrides:
      hashCode in class Object