Package org.osgi.service.enocean
Interface EnOceanChannel
-
public interface EnOceanChannel
Holds the raw value and channel identification info of an EnOceanChannel.- Author:
- $Id: de13937dd404a289df42d0fc091b48c4fd4e6e7c $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getChannelId()
int
getOffset()
byte[]
getRawValue()
Gets the raw value of this channel.int
getSize()
void
setRawValue(byte[] rawValue)
Sets the raw value of a channel.
-
-
-
Method Detail
-
getChannelId
java.lang.String getChannelId()
- Returns:
- The unique ID of this channel.
-
getOffset
int getOffset()
- Returns:
- The offset, in bits, where this channel is found in the telegram.
-
getSize
int getSize()
- Returns:
- The size, in bits, of this channel.
-
getRawValue
byte[] getRawValue()
Gets the raw value of this channel.- Returns:
- corresponding value.
-
setRawValue
void setRawValue(byte[] rawValue)
Sets the raw value of a channel.- Parameters:
rawValue
-
-
-