public abstract class GroupKeyEntity
extends java.lang.Object
GroupKeyEntity abstract class wraps the grouped key items defined on Network Manager.| Modifier and Type | Method and Description |
|---|---|
abstract java.util.List<GroupKeyItemEntity> |
groupKeyItemEntity1()
Returns the
List of GroupKeyItemEntity objects related to group 1 of the the
group key. |
abstract java.util.List<GroupKeyItemEntity> |
groupKeyItemEntity2()
Returns the
List of GroupKeyItemEntity objects related to group 2 of the the
group key. |
abstract java.util.List<GroupKeyItemEntity> |
groupKeyItemEntity3()
Returns the
List of GroupKeyItemEntity objects related to group 3 of the the
group key. |
abstract boolean |
isBatchKey()
Returns a boolean that represents whether or not the
GroupKeyEntity is a batch
key (i.e. |
abstract int |
layoutCount()
Returns an int of the layout count of the key.
|
abstract java.util.List<GroupKeyItemEntity> |
totalGroupKeyItemEntityList()
Returns the
List of GroupKeyItemEntity objects related to the group key. |
public abstract int layoutCount()
public abstract java.util.List<GroupKeyItemEntity> totalGroupKeyItemEntityList()
List of GroupKeyItemEntity objects related to the group key. This
List includes all of the keys associated with a group key.List of GroupKeyItemEntity objects related to a key.public abstract java.util.List<GroupKeyItemEntity> groupKeyItemEntity1()
List of GroupKeyItemEntity objects related to group 1 of the the
group key.List of GroupKeyItemEntity objects related group 1 of the group
key.@Nullable public abstract java.util.List<GroupKeyItemEntity> groupKeyItemEntity2()
List of GroupKeyItemEntity objects related to group 2 of the the
group key. May be null.List of GroupKeyItemEntity objects related group 2 of the group
key.@Nullable public abstract java.util.List<GroupKeyItemEntity> groupKeyItemEntity3()
List of GroupKeyItemEntity objects related to group 3 of the the
group key. May be null.List of GroupKeyItemEntity objects related group 3 of the group
key.public abstract boolean isBatchKey()
GroupKeyEntity is a batch
key (i.e. a key that can trigger multiple keys upon activation).true if the GroupKeyEntity is a batch key;
false otherwise (i.e. the key is a group key).