public static enum IQ.Type extends Enum<IQ.Type>
IQ.Type.get or IQ.Type.set is received the response
must be IQ.Type.result or IQ.Type.error. The id of the
originating IQ.Type.get of IQ.Type.set IQ must be preserved
when sending IQ.Type.result or IQ.Type.error.| Enum Constant and Description |
|---|
error
An error has occurred regarding processing or delivery of a
previously-sent get or set.
|
get
The IQ is a request for information or requirements.
|
result
The IQ is a response to a successful get or set request.
|
set
The IQ provides required data, sets new values, or
replaces existing values.
|
| Modifier and Type | Method and Description |
|---|---|
static IQ.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IQ.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IQ.Type get
public static final IQ.Type set
public static final IQ.Type result
public static final IQ.Type error
public static IQ.Type[] values()
for (IQ.Type c : IQ.Type.values()) System.out.println(c);
public static IQ.Type 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 © 2009–2017 Ignite Realtime. All rights reserved.