public static enum UserStorageProviderModel.CachePolicy extends Enum<UserStorageProviderModel.CachePolicy>
Enum Constant and Description |
---|
DEFAULT |
EVICT_DAILY |
EVICT_WEEKLY |
MAX_LIFESPAN |
NO_CACHE |
Modifier and Type | Method and Description |
---|---|
static UserStorageProviderModel.CachePolicy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UserStorageProviderModel.CachePolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UserStorageProviderModel.CachePolicy NO_CACHE
public static final UserStorageProviderModel.CachePolicy DEFAULT
public static final UserStorageProviderModel.CachePolicy EVICT_DAILY
public static final UserStorageProviderModel.CachePolicy EVICT_WEEKLY
public static final UserStorageProviderModel.CachePolicy MAX_LIFESPAN
public static UserStorageProviderModel.CachePolicy[] values()
for (UserStorageProviderModel.CachePolicy c : UserStorageProviderModel.CachePolicy.values()) System.out.println(c);
public static UserStorageProviderModel.CachePolicy 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 © 2018 JBoss by Red Hat. All rights reserved.