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