public static enum CaffeineLoadCacheEndpointBuilderFactory.EvictionType extends Enum<CaffeineLoadCacheEndpointBuilderFactory.EvictionType>
org.apache.camel.component.caffeine.EvictionType enum.| Enum Constant and Description |
|---|
SIZE_BASED |
TIME_BASED |
| Modifier and Type | Method and Description |
|---|---|
static CaffeineLoadCacheEndpointBuilderFactory.EvictionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CaffeineLoadCacheEndpointBuilderFactory.EvictionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CaffeineLoadCacheEndpointBuilderFactory.EvictionType SIZE_BASED
public static final CaffeineLoadCacheEndpointBuilderFactory.EvictionType TIME_BASED
public static CaffeineLoadCacheEndpointBuilderFactory.EvictionType[] values()
for (CaffeineLoadCacheEndpointBuilderFactory.EvictionType c : CaffeineLoadCacheEndpointBuilderFactory.EvictionType.values()) System.out.println(c);
public static CaffeineLoadCacheEndpointBuilderFactory.EvictionType 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 nullApache Camel