class Encoding

Constants

ASCII_8BIT
UTF_8

Attributes

name[R]

Public Class Methods

new(name) click to toggle source
# File lib/qubitro-mqtt/patches/string_encoding.rb, line 22
def initialize(name)
  @name = name
end

Public Instance Methods

to_s() click to toggle source
# File lib/qubitro-mqtt/patches/string_encoding.rb, line 26
def to_s
  @name
end