public static enum Link.Reliability extends Enum<Link.Reliability>
Enum Constant and Description |
---|
AT_LEAST_ONCE |
AT_MOST_ONCE |
EXACTLY_ONCE |
UNRELIABLE |
Modifier and Type | Method and Description |
---|---|
static Link.Reliability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Link.Reliability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Link.Reliability UNRELIABLE
public static final Link.Reliability AT_MOST_ONCE
public static final Link.Reliability AT_LEAST_ONCE
public static final Link.Reliability EXACTLY_ONCE
public static Link.Reliability[] values()
for (Link.Reliability c : Link.Reliability.values()) System.out.println(c);
public static Link.Reliability 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 © 2006–2016 The Apache Software Foundation. All rights reserved.