Class: Google::Cloud::Language::Annotation::TextSpan
- Inherits:
-
Object
- Object
- Google::Cloud::Language::Annotation::TextSpan
- Defined in:
- lib/google/cloud/language/annotation.rb
Overview
Represents a piece of text including relative location.
Instance Attribute Summary collapse
-
#offset ⇒ Integer
(also: #begin_offset)
readonly
The beginning offset of the content in the original document.
-
#text ⇒ String
(also: #content)
readonly
The content of the output text.
Instance Attribute Details
#offset ⇒ Integer (readonly) Also known as: begin_offset
The beginning offset of the content in the original document.
The API calculates the beginning offset according to the client
system's default encoding. In Ruby this defaults to UTF-8. To change
the offset calculation you will need to change Ruby's default
encoding. This is commonly done by setting
Encoding.default_internal
to Encoding::UTF_16
or
Encoding::UTF_32
. If the system is configured to use an encoding
other than UTF-16 or UTF-32 the offset will be calculated using
UTF-8.
270 271 272 |
# File 'lib/google/cloud/language/annotation.rb', line 270 def offset @offset end |
#text ⇒ String (readonly) Also known as: content
The content of the output text.
270 271 272 |
# File 'lib/google/cloud/language/annotation.rb', line 270 def text @text end |