public enum ReactivityType extends Enum<ReactivityType>
| Modifier and Type | Method and Description |
|---|---|
ReactivityType |
combine(ReactivityType type) |
static ReactivityType |
decode(boolean positive) |
ReactivityType |
negate() |
static ReactivityType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReactivityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReactivityType POSITIVE
public static final ReactivityType NEGATIVE
public static final ReactivityType UNKNOWN
public static ReactivityType[] values()
for (ReactivityType c : ReactivityType.values()) System.out.println(c);
public static ReactivityType 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 nullpublic ReactivityType negate()
public ReactivityType combine(ReactivityType type)
public static ReactivityType decode(boolean positive)
Copyright © 2001–2021 JBoss by Red Hat. All rights reserved.