public static enum TestSubscriber.FusionRequirement extends java.lang.Enum<TestSubscriber.FusionRequirement>
枚举常量和说明 |
---|
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 . |
限定符和类型 | 方法和说明 |
---|---|
static TestSubscriber.FusionRequirement |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static TestSubscriber.FusionRequirement[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
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(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值