Class: Resolv::DNS::Label::Str
- Inherits:
-
Object
- Object
- Resolv::DNS::Label::Str
- Defined in:
- lib/resolv.rb
Overview
:nodoc:
Instance Attribute Summary collapse
-
#downcase ⇒ Object
readonly
Returns the value of attribute downcase.
-
#string ⇒ Object
readonly
Returns the value of attribute string.
Instance Method Summary collapse
- #==(other) ⇒ Object
- #eql?(other) ⇒ Boolean
- #hash ⇒ Object
-
#initialize(string) ⇒ Str
constructor
A new instance of Str.
- #inspect ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(string) ⇒ Str
Returns a new instance of Str.
967 968 969 970 |
# File 'lib/resolv.rb', line 967 def initialize(string) @string = string @downcase = string.downcase end |
Instance Attribute Details
#downcase ⇒ Object (readonly)
Returns the value of attribute downcase.
971 972 973 |
# File 'lib/resolv.rb', line 971 def downcase @downcase end |
#string ⇒ Object (readonly)
Returns the value of attribute string.
971 972 973 |
# File 'lib/resolv.rb', line 971 def string @string end |
Instance Method Details
#==(other) ⇒ Object
981 982 983 |
# File 'lib/resolv.rb', line 981 def ==(other) return @downcase == other.downcase end |
#eql?(other) ⇒ Boolean
985 986 987 |
# File 'lib/resolv.rb', line 985 def eql?(other) return self == other end |
#hash ⇒ Object
989 990 991 |
# File 'lib/resolv.rb', line 989 def hash return @downcase.hash end |
#inspect ⇒ Object
977 978 979 |
# File 'lib/resolv.rb', line 977 def inspect return "#<#{self.class} #{self.to_s}>" end |
#to_s ⇒ Object
973 974 975 |
# File 'lib/resolv.rb', line 973 def to_s return @string end |