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.
      415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433  | 
    
      # File 'proto_docs/google/cloud/documentai/v1beta3/document.rb', line 415 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  |