public static enum KieServiceResponse.ResponseType extends Enum<KieServiceResponse.ResponseType>
| Enum Constant and Description |
|---|
FAILURE |
NO_RESPONSE |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static KieServiceResponse.ResponseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static KieServiceResponse.ResponseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KieServiceResponse.ResponseType SUCCESS
public static final KieServiceResponse.ResponseType FAILURE
public static final KieServiceResponse.ResponseType NO_RESPONSE
public static KieServiceResponse.ResponseType[] values()
for (KieServiceResponse.ResponseType c : KieServiceResponse.ResponseType.values()) System.out.println(c);
public static KieServiceResponse.ResponseType 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 nullCopyright © 2001–2019 JBoss by Red Hat. All rights reserved.