public static enum QosLiveliness.Kind extends Enum<QosLiveliness.Kind>
Enum Constant and Description |
---|
AUTOMATIC
With this Kind, Participant automatically manages liveliness of
Writers having this Kind.
|
MANUAL_BY_PARTICIPANT
With this Kind, it is sufficient that one Writer within Participant
asserts its liveliness.
|
MANUAL_BY_TOPIC
Writer that has this kind of Liveliness, has to manage liveliness by
itself by writing some samples, or by calling assertLiveliness
explicitly.
|
Modifier and Type | Method and Description |
---|---|
static QosLiveliness.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QosLiveliness.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QosLiveliness.Kind AUTOMATIC
public static final QosLiveliness.Kind MANUAL_BY_PARTICIPANT
public static final QosLiveliness.Kind MANUAL_BY_TOPIC
public static QosLiveliness.Kind[] values()
for (QosLiveliness.Kind c : QosLiveliness.Kind.values()) System.out.println(c);
public static QosLiveliness.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.