Class: Nmap::XML::Sequence
- Inherits:
-
Object
- Object
- Nmap::XML::Sequence
- Defined in:
- lib/nmap/xml/sequence.rb
Overview
Base class for all Sequence classes.
Direct Known Subclasses
Instance Method Summary collapse
-
#description ⇒ String
The description of the sequence.
-
#initialize(node) ⇒ Sequence
constructor
Creates a new sequence object.
-
#values ⇒ Array<Numeric>
The values within the sequence.
Constructor Details
#initialize(node) ⇒ Sequence
Creates a new sequence object.
20 21 22 |
# File 'lib/nmap/xml/sequence.rb', line 20 def initialize(node) @node = node end |
Instance Method Details
#description ⇒ String
The description of the sequence.
32 33 34 |
# File 'lib/nmap/xml/sequence.rb', line 32 def description @description ||= @node['class'] end |
#values ⇒ Array<Numeric>
The values within the sequence.
44 45 46 47 48 49 50 |
# File 'lib/nmap/xml/sequence.rb', line 44 def values @values ||= if @node['values'] @node['values'].split(',').map { |value| value.to_i(16) } else [] end end |