public enum SequenceQOS extends Enum<SequenceQOS>
| Enum Constant and Description |
|---|
AT_LEAST_ONCE
At least once.
|
AT_MOST_ONCE
At most once.
|
EXACTLY_ONCE
Exactly once
|
UNSPECIFIED
Unspecified
|
| Modifier and Type | Method and Description |
|---|---|
static SequenceQOS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceQOS[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final SequenceQOS AT_LEAST_ONCE
public static final SequenceQOS AT_MOST_ONCE
public static final SequenceQOS EXACTLY_ONCE
public static final SequenceQOS UNSPECIFIED
public static SequenceQOS 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 nullpublic static SequenceQOS[] values()
for (SequenceQOS c : SequenceQOS.values())
System.out.println(c);