public static enum TransportOptions.QoSEnum extends java.lang.Enum<TransportOptions.QoSEnum>
| Enum Constant and Description | 
|---|
| BEST_EFFORT | 
| EXACTLY_ONCE | 
| Modifier and Type | Method and Description | 
|---|---|
| static TransportOptions.QoSEnum | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static TransportOptions.QoSEnum[] | values()Returns an array containing the constants of this enum type, in the order they are declared. | 
public static final TransportOptions.QoSEnum EXACTLY_ONCE
public static final TransportOptions.QoSEnum BEST_EFFORT
public static TransportOptions.QoSEnum[] values()
for (TransportOptions.QoSEnum c : TransportOptions.QoSEnum.values())
    System.out.println(c);
public static TransportOptions.QoSEnum valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null