java.lang.Object
com.azure.ai.formrecognizer.documentanalysis.models.DocumentSpan

public final class DocumentSpan extends Object
Contiguous region of the concatenated content property, specified as an offset and length.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Creates a DocumentSpan object.
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Get the length property: Number of characters in the content represented by the span.
    int
    Get the offset property: Zero-based index of the content represented by the span.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • DocumentSpan

      public DocumentSpan()
      Creates a DocumentSpan object.
  • Method Details

    • getOffset

      public int getOffset()
      Get the offset property: Zero-based index of the content represented by the span.
      Returns:
      the offset value.
    • getLength

      public int getLength()
      Get the length property: Number of characters in the content represented by the span.
      Returns:
      the length value.