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