Class: OpenHAB::Core::Things::ThingUID
- Inherits:
- 
      UID
      
        - Object
- AbstractUID
- UID
- OpenHAB::Core::Things::ThingUID
 
- Defined in:
- lib/openhab/core/things/thing_uid.rb
Overview
Instance Attribute Summary collapse
- #bridge_ids ⇒ Array<string> readonly
- #id ⇒ String readonly
- #thing ⇒ Thing readonly
Attributes inherited from UID
Method Summary
Methods inherited from AbstractUID
Instance Attribute Details
#bridge_ids ⇒ Array<string> (readonly)
| 19 20 21 22 23 24 25 26 27 | # File 'lib/openhab/core/things/thing_uid.rb', line 19 class ThingUID < UID extend Forwardable # @!attribute [r] thing # @return [Thing] def thing EntityLookup.lookup_thing(self) end end | 
#id ⇒ String (readonly)
| 19 20 21 22 23 24 25 26 27 | # File 'lib/openhab/core/things/thing_uid.rb', line 19 class ThingUID < UID extend Forwardable # @!attribute [r] thing # @return [Thing] def thing EntityLookup.lookup_thing(self) end end | 
#thing ⇒ Thing (readonly)
| 24 25 26 | # File 'lib/openhab/core/things/thing_uid.rb', line 24 def thing EntityLookup.lookup_thing(self) end | 
 
          