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