public static enum AsciiResponse.Type extends Enum<AsciiResponse.Type>
| Enum Constant and Description |
|---|
DELETED |
EXISTS |
NOT_FOUND |
NOT_STORED |
NUMERIC_VALUE |
STORED |
TOUCHED |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static AsciiResponse.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AsciiResponse.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AsciiResponse.Type VALUE
public static final AsciiResponse.Type NUMERIC_VALUE
public static final AsciiResponse.Type STORED
public static final AsciiResponse.Type EXISTS
public static final AsciiResponse.Type DELETED
public static final AsciiResponse.Type NOT_FOUND
public static final AsciiResponse.Type NOT_STORED
public static final AsciiResponse.Type TOUCHED
public static AsciiResponse.Type[] values()
for (AsciiResponse.Type c : AsciiResponse.Type.values()) System.out.println(c);
public static AsciiResponse.Type 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 © 2017 Spotify AB. All rights reserved.