class DBus::Data::Int16

Signed 16 bit integer.

Constants

FORMAT

Public Class Methods

alignment() click to toggle source
# File lib/dbus/data.rb, line 253
def self.alignment
  2
end
format() click to toggle source
# File lib/dbus/data.rb, line 258
def self.format
  FORMAT
end
range() click to toggle source
# File lib/dbus/data.rb, line 262
def self.range
  (-32_768..32_767)
end
type_code() click to toggle source
# File lib/dbus/data.rb, line 249
def self.type_code
  "n"
end