Class: Hiera::Backend::Eyaml::Parser::Token
- Inherits:
-
Object
- Object
- Hiera::Backend::Eyaml::Parser::Token
- Defined in:
- lib/hiera/backend/eyaml/parser/token.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#match ⇒ Object
readonly
Returns the value of attribute match.
Instance Method Summary collapse
-
#initialize(match) ⇒ Token
constructor
A new instance of Token.
- #to_decrypted(_args = {}) ⇒ Object
- #to_encrypted(_args = {}) ⇒ Object
- #to_plain_text ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(match) ⇒ Token
Returns a new instance of Token.
16 17 18 |
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 16 def initialize(match) @match = match end |
Instance Attribute Details
#match ⇒ Object (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
24 25 26 |
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 24 def to_decrypted(_args = {}) raise 'Abstract method called' end |
#to_encrypted(_args = {}) ⇒ Object
20 21 22 |
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 20 def to_encrypted(_args = {}) raise 'Abstract method called' end |
#to_plain_text ⇒ Object
28 29 30 |
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 28 def to_plain_text raise 'Abstract method called' end |
#to_s ⇒ Object
32 33 34 |
# File 'lib/hiera/backend/eyaml/parser/token.rb', line 32 def to_s "#{self.class.name}:#{@match}" end |