Interface ZigBeeServerMask
-
public interface ZigBeeServerMask
Represents the ZigBee Server Mask field of the ZigBee Node Descriptor.- Author:
- $Id: 1864f3921cef93fe7b6d58f31a7b81fe69e66b67 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
isBackupBindingTableCache()
Checks if the server is a Backup Binding Table Cache.boolean
isBackupDiscoveryCache()
Checks if the server is a Backup Discovery Cache.boolean
isBackupTrustCenter()
Checks if the server is a Backup Trust Center.boolean
isNetworkManager()
Checks if the server is a Network Manager.boolean
isPrimaryBindingTableCache()
Checks if the server is a Primary Binding Table Cache.boolean
isPrimaryDiscoveryCache()
Checks if the server is a Primary Discovery Cache.boolean
isPrimaryTrustCenter()
Checks if the server is a Primary Trust Center.
-
-
-
Method Detail
-
isPrimaryTrustCenter
boolean isPrimaryTrustCenter()
Checks if the server is a Primary Trust Center.- Returns:
true
if and only if the server is a Primary Trust Center.
-
isBackupTrustCenter
boolean isBackupTrustCenter()
Checks if the server is a Backup Trust Center.- Returns:
true
if and only if the server is a Backup Trust Center.
-
isPrimaryBindingTableCache
boolean isPrimaryBindingTableCache()
Checks if the server is a Primary Binding Table Cache.- Returns:
true
if and only if the server is a Primary Binding Table Cache.
-
isBackupBindingTableCache
boolean isBackupBindingTableCache()
Checks if the server is a Backup Binding Table Cache.- Returns:
true
if and only if the server is a Backup Binding Table Cache.
-
isPrimaryDiscoveryCache
boolean isPrimaryDiscoveryCache()
Checks if the server is a Primary Discovery Cache.- Returns:
true
if and only if the server is a Primary Discovery Cache.
-
isBackupDiscoveryCache
boolean isBackupDiscoveryCache()
Checks if the server is a Backup Discovery Cache.- Returns:
true
if and only if the server is a Backup Discovery Cache.
-
isNetworkManager
boolean isNetworkManager()
Checks if the server is a Network Manager.- Returns:
true
if and only if the server is a Network Manager.
-
-