public static enum TestSubscriber.FusionRequirement extends Enum<TestSubscriber.FusionRequirement>
Enum Constant and Description |
---|
FUSEABLE
The parent
Publisher is expected to be fuseable, and this is
verified by checking the Subscription it provides is a Fuseable.QueueSubscription . |
NONE
There is no particular interest in the fuseability of the parent
Publisher ,
so even if it provides a Fuseable.QueueSubscription it will be used as a
vanilla Subscription . |
NOT_FUSEABLE
The parent
Publisher is expected to NOT be fuseable, and this is
verified by checking the Subscription it provides is NOT a Fuseable.QueueSubscription . |
Modifier and Type | Method and Description |
---|---|
static TestSubscriber.FusionRequirement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestSubscriber.FusionRequirement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestSubscriber.FusionRequirement FUSEABLE
Publisher
is expected to be fuseable, and this is
verified by checking the Subscription
it provides is a Fuseable.QueueSubscription
.public static final TestSubscriber.FusionRequirement NOT_FUSEABLE
Publisher
is expected to NOT be fuseable, and this is
verified by checking the Subscription
it provides is NOT a Fuseable.QueueSubscription
.public static final TestSubscriber.FusionRequirement NONE
Publisher
,
so even if it provides a Fuseable.QueueSubscription
it will be used as a
vanilla Subscription
.public static TestSubscriber.FusionRequirement[] values()
for (TestSubscriber.FusionRequirement c : TestSubscriber.FusionRequirement.values()) System.out.println(c);
public static TestSubscriber.FusionRequirement 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 null