Class: Google::Cloud::DocumentAI::V1beta3::Document::Page::Token::DetectedBreak
- Inherits:
-
Object
- Object
- Google::Cloud::DocumentAI::V1beta3::Document::Page::Token::DetectedBreak
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/documentai/v1beta3/document.rb
Overview
Detected break at the end of a Token.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#type ⇒ ::Google::Cloud::DocumentAI::V1beta3::Document::Page::Token::DetectedBreak::Type
Detected break type.
Instance Attribute Details
#type ⇒ ::Google::Cloud::DocumentAI::V1beta3::Document::Page::Token::DetectedBreak::Type
Returns Detected break type.
388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 |
# File 'proto_docs/google/cloud/documentai/v1beta3/document.rb', line 388 class DetectedBreak include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Enum to denote the type of break found. module Type # Unspecified break type. TYPE_UNSPECIFIED = 0 # A single whitespace. SPACE = 1 # A wider whitespace. WIDE_SPACE = 2 # A hyphen that indicates that a token has been split across lines. HYPHEN = 3 end end |