Interface ZigBeeMacCapabiliyFlags
-
public interface ZigBeeMacCapabiliyFlagsThis interface represents the Node Descriptor MAC Capability Flags as described in the ZigBee Specification.- Author:
- $Id: 32307ac23cba0932090216ddac6d6e007158e461 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanisAddressAllocate()Checks if the device is address allocate.booleanisAlternatePANCoordinator()Checks if this node is capable of becoming PAN coordinator.booleanisFullFunctionDevice()Checks if this node a Full Function Device (FFD).booleanisMainsPower()Checks if the current power source is mains power.booleanisReceiverOnWhenIdle()Checks if the device does not disable its receiver to conserve power during idle periods.booleanisSecurityCapable()Checks if the device is capable of sending and receiving secured frames
-
-
-
Method Detail
-
isAlternatePANCoordinator
boolean isAlternatePANCoordinator()
Checks if this node is capable of becoming PAN coordinator.- Returns:
- true if this node is capable of becoming PAN coordinator or false otherwise.
-
isFullFunctionDevice
boolean isFullFunctionDevice()
Checks if this node a Full Function Device (FFD).- Returns:
- true if this node a Full Function Device (FFD), false otherwise (it is a Reduced Function Device, RFD).
-
isMainsPower
boolean isMainsPower()
Checks if the current power source is mains power.- Returns:
- true if the current power source is mains power or false otherwise.
-
isReceiverOnWhenIdle
boolean isReceiverOnWhenIdle()
Checks if the device does not disable its receiver to conserve power during idle periods.- Returns:
- true if the device does not disable its receiver to conserve power during idle periods or false otherwise.
-
isSecurityCapable
boolean isSecurityCapable()
Checks if the device is capable of sending and receiving secured frames- Returns:
- true if the device is capable of sending and receiving secured frames or false otherwise.
-
isAddressAllocate
boolean isAddressAllocate()
Checks if the device is address allocate.- Returns:
- true if the device is address allocate or false otherwise.
-
-