public static enum QosReliability.Kind extends Enum<QosReliability.Kind>
| Enum Constant and Description |
|---|
BEST_EFFORT
With BEST_EFFORT kind, no promise about delivery is made.
|
RELIABLE
RELIABLE kind ensures that all the Data messages are sent to readers in reliable manner.
|
| Modifier and Type | Method and Description |
|---|---|
static QosReliability.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QosReliability.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QosReliability.Kind BEST_EFFORT
public static final QosReliability.Kind RELIABLE
public static QosReliability.Kind[] values()
for (QosReliability.Kind c : QosReliability.Kind.values()) System.out.println(c);
public static QosReliability.Kind 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 © 2016. All rights reserved.