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