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