public static enum NodeSubscription.State extends Enum<NodeSubscription.State>
Enum Constant and Description |
---|
none
The node will never send event notifications or payloads to users in this state.
|
pending
An entity has requested to subscribe to a node and the request has not yet been
approved by a node owner.
|
subscribed
An entity is subscribed to a node.
|
unconfigured
An entity has subscribed but its subscription options have not yet been configured.
|
Modifier and Type | Method and Description |
---|---|
static NodeSubscription.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NodeSubscription.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NodeSubscription.State none
public static final NodeSubscription.State pending
public static final NodeSubscription.State unconfigured
public static final NodeSubscription.State subscribed
public static NodeSubscription.State[] values()
for (NodeSubscription.State c : NodeSubscription.State.values()) System.out.println(c);
public static NodeSubscription.State 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 © 2003–2019 Ignite Realtime. All rights reserved.