Class: Hiera::Backend::Eyaml::Parser::Token

Inherits:
Object
  • Object
show all
Defined in:
lib/hiera/backend/eyaml/parser/token.rb

Direct Known Subclasses

EncToken, NonMatchToken

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(match) ⇒ Token

Returns a new instance of Token.



15
16
17
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 15

def initialize(match)
  @match = match
end

Instance Attribute Details

#matchObject (readonly)

Returns the value of attribute match.



14
15
16
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 14

def match
  @match
end

Instance Method Details

#to_decrypted(args = {}) ⇒ Object



21
22
23
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 21

def to_decrypted(args={})
  raise 'Abstract method called'
end

#to_encrypted(args = {}) ⇒ Object



18
19
20
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 18

def to_encrypted(args={})
  raise 'Abstract method called'
end

#to_plain_textObject



24
25
26
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 24

def to_plain_text
  raise 'Abstract method called'
end

#to_sObject



27
28
29
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 27

def to_s
  "#{self.class.name}:#{@match}"
end