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