class BACnet::ObjectIdentifier
- BACnet::ObjectIdentifier
- BinData
- Reference
- Object
Defined in:
bacnet/objects/object_identifier.crConstant Summary
-
ENDIAN =
["big"]
-
KLASS_NAME =
[BACnet::ObjectIdentifier]
-
PARTS =
[{type: "bitfield", name: 2, cls: BACnet::ObjectIdentifier, onlyif: nil, verify: nil}] of Nil
-
REMAINING =
[] of Nil
Constructors
Class Method Summary
Macro Summary
- ba_cnet_apdu_indicator(name, onlyif = nil, verify = nil, value = nil)
- ba_cnet_bit_string(name, onlyif = nil, verify = nil, value = nil)
- ba_cnet_date(name, onlyif = nil, verify = nil, value = nil)
- ba_cnet_npdu(name, onlyif = nil, verify = nil, value = nil)
- ba_cnet_npdu_destination(name, onlyif = nil, verify = nil, value = nil)
- ba_cnet_npdu_source(name, onlyif = nil, verify = nil, value = nil)
- ba_cnet_object_identifier(name, onlyif = nil, verify = nil, value = nil)
Instance Method Summary
- #__format__ : IO::ByteFormat
-
#inspect(io : IO) : Nil
Appends a String representation of this object which includes its class name, its object address and the values of all instance variables.
- #instance_number : UInt32
- #instance_number=(instance_number : UInt32)
- #object_type : BACnet::ObjectIdentifier::ObjectType
- #object_type=(object_type : UInt16)
- #object_type=(value : BACnet::ObjectIdentifier::ObjectType)
Constructor Detail
Class Method Detail
Macro Detail
Instance Method Detail
def inspect(io : IO) : Nil
#
Description copied from class Reference
Appends a String representation of this object which includes its class name, its object address and the values of all instance variables.
class Person
def initialize(@name : String, @age : Int32)
end
end
Person.new("John", 32).inspect # => #<Person:0x10fd31f20 @name="John", @age=32>