class Hiera::Backend::Eyaml::Parser::Token
Attributes
Public Class Methods
Source
# File lib/hiera/backend/eyaml/parser/token.rb, line 16 def initialize(match) @match = match end
Public Instance Methods
Source
# File lib/hiera/backend/eyaml/parser/token.rb, line 24 def to_decrypted(_args = {}) raise 'Abstract method called' end
Source
# File lib/hiera/backend/eyaml/parser/token.rb, line 20 def to_encrypted(_args = {}) raise 'Abstract method called' end
Source
# File lib/hiera/backend/eyaml/parser/token.rb, line 28 def to_plain_text raise 'Abstract method called' end
Source
# File lib/hiera/backend/eyaml/parser/token.rb, line 32 def to_s "#{self.class.name}:#{@match}" end