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