@Portable public enum CachingType extends Enum<CachingType>
| Enum Constant and Description |
|---|
ALL |
DISABLE_SELECTIVE |
ENABLE_SELECTIVE |
NONE |
UNSPECIFIED |
| Modifier and Type | Method and Description |
|---|---|
static CachingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CachingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CachingType ALL
public static final CachingType NONE
public static final CachingType ENABLE_SELECTIVE
public static final CachingType DISABLE_SELECTIVE
public static final CachingType UNSPECIFIED
public static CachingType[] values()
for (CachingType c : CachingType.values()) System.out.println(c);
public static CachingType 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 © 2001–2018 JBoss by Red Hat. All rights reserved.