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