public enum RequestKey extends Enum<RequestKey>
| Enum Constant and Description |
|---|
CONTENT_MD5 |
| Modifier and Type | Method and Description |
|---|---|
static RequestKey |
fromString(String text) |
String |
toString() |
static RequestKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RequestKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RequestKey CONTENT_MD5
public static RequestKey[] values()
for (RequestKey c : RequestKey.values()) System.out.println(c);
public static RequestKey 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 nullpublic String toString()
toString in class Enum<RequestKey>public static RequestKey fromString(String text)
Copyright © 2009-2013 DuraSpace. All Rights Reserved.