public enum DocumentAttributes extends Enum<DocumentAttributes>
| Enum Constant and Description |
|---|
CACHED |
RENDERED |
SHA1 |
SOURCE_URI |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static DocumentAttributes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentAttributes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentAttributes SHA1
public static final DocumentAttributes SOURCE_URI
public static final DocumentAttributes RENDERED
public static final DocumentAttributes CACHED
public static DocumentAttributes[] values()
for (DocumentAttributes c : DocumentAttributes.values()) System.out.println(c);
public static DocumentAttributes 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<DocumentAttributes>Copyright © 2016. All rights reserved.