public enum CachableType extends Enum<CachableType>
| Enum Constant and Description |
|---|
CATEGORY |
CUSTOM_FIELD |
NATURE |
TYPE |
| Modifier and Type | Method and Description |
|---|---|
static CachableType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CachableType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CachableType CATEGORY
public static final CachableType TYPE
public static final CachableType NATURE
public static final CachableType CUSTOM_FIELD
public static CachableType[] values()
for (CachableType c : CachableType.values()) System.out.println(c);
public static CachableType 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 © 2010–2017 Henix, henix.fr. All rights reserved.