public enum GroupEventStatus extends Enum<GroupEventStatus>
GatewayClient
.Enum Constant and Description |
---|
CREATE
A
Group has been created in the network(s) represented by the GatewayClient . |
REMOVE
A
Group has been removed from the network(s) represented by the GatewayClient . |
UPDATE
|
Modifier and Type | Method and Description |
---|---|
static GroupEventStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupEventStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupEventStatus CREATE
Group
has been created in the network(s) represented by the GatewayClient
.public static final GroupEventStatus REMOVE
Group
has been removed from the network(s) represented by the GatewayClient
.public static final GroupEventStatus UPDATE
public static GroupEventStatus[] values()
for (GroupEventStatus c : GroupEventStatus.values()) System.out.println(c);
public static GroupEventStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2020. All rights reserved.