public enum CacheDocumentStatus extends Enum<CacheDocumentStatus>
Enum Constant and Description |
---|
ERROR
Error
|
EXISTS
Exists
|
NOT_EXIST
Does not exist
|
UPLOADING
Uploading
|
Modifier and Type | Method and Description |
---|---|
static CacheDocumentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CacheDocumentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CacheDocumentStatus NOT_EXIST
public static final CacheDocumentStatus UPLOADING
public static final CacheDocumentStatus EXISTS
public static final CacheDocumentStatus ERROR
public static CacheDocumentStatus[] values()
for (CacheDocumentStatus c : CacheDocumentStatus.values()) System.out.println(c);
public static CacheDocumentStatus 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 © 2019. All rights reserved.