Class: Resolv::DNS::Label::Str

Inherits:
Object
  • Object
show all
Defined in:
lib/resolv.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(string) ⇒ Str

Returns a new instance of Str.



1178
1179
1180
1181
1182
1183
# File 'lib/resolv.rb', line 1178

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

#downcaseObject (readonly)

Returns the value of attribute downcase



1184
1185
1186
# File 'lib/resolv.rb', line 1184

def downcase
  @downcase
end

#stringObject (readonly)

Returns the value of attribute string



1184
1185
1186
# File 'lib/resolv.rb', line 1184

def string
  @string
end

Instance Method Details

#==(other) ⇒ Object



1194
1195
1196
# File 'lib/resolv.rb', line 1194

def ==(other)
  return self.class == other.class && @downcase == other.downcase
end

#eql?(other) ⇒ Boolean

Returns:

  • (Boolean)


1198
1199
1200
# File 'lib/resolv.rb', line 1198

def eql?(other)
  return self == other
end

#hashObject



1202
1203
1204
# File 'lib/resolv.rb', line 1202

def hash
  return @downcase.hash
end

#inspectObject



1190
1191
1192
# File 'lib/resolv.rb', line 1190

def inspect
  return "#<#{self.class} #{self}>"
end

#to_sObject



1186
1187
1188
# File 'lib/resolv.rb', line 1186

def to_s
  return @string
end