Class: Gem::Resolv::DNS::Label::Str
- Inherits:
-
Object
- Object
- Gem::Resolv::DNS::Label::Str
- Defined in:
- lib/rubygems/vendor/resolv/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.
1245 1246 1247 1248 1249 1250 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1245 def initialize(string) @string = string # case insensivity of DNS labels doesn't apply non-ASCII characters. [RFC 4343] # This assumes @string is given in ASCII compatible encoding. @downcase = string.b.downcase end |
Instance Attribute Details
#downcase ⇒ Object (readonly)
Returns the value of attribute downcase.
1251 1252 1253 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1251 def downcase @downcase end |
#string ⇒ Object (readonly)
Returns the value of attribute string.
1251 1252 1253 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1251 def string @string end |
Instance Method Details
#==(other) ⇒ Object
1261 1262 1263 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1261 def ==(other) return self.class == other.class && @downcase == other.downcase end |
#eql?(other) ⇒ Boolean
1265 1266 1267 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1265 def eql?(other) return self == other end |
#hash ⇒ Object
1269 1270 1271 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1269 def hash return @downcase.hash end |
#inspect ⇒ Object
1257 1258 1259 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1257 def inspect return "#<#{self.class} #{self}>" end |
#to_s ⇒ Object
1253 1254 1255 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 1253 def to_s return @string end |