public static enum QosDurability.Kind extends Enum<QosDurability.Kind>
| Enum Constant and Description |
|---|
PERSISTENT |
TRANSIENT |
TRANSIENT_LOCAL |
VOLATILE |
| Modifier and Type | Method and Description |
|---|---|
static QosDurability.Kind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QosDurability.Kind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QosDurability.Kind VOLATILE
public static final QosDurability.Kind TRANSIENT_LOCAL
public static final QosDurability.Kind TRANSIENT
public static final QosDurability.Kind PERSISTENT
public static QosDurability.Kind[] values()
for (QosDurability.Kind c : QosDurability.Kind.values()) System.out.println(c);
public static QosDurability.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.