public enum BuiltInServices extends Enum<BuiltInServices>
Enum Constant and Description |
---|
ClientBus
The standard service name for client buses
|
ClientBusErrors
The standard service name for error handling on client.
|
ServerBus
The standard service name for server buses
|
ServerEchoService
The standard server echo service.
|
Modifier and Type | Method and Description |
---|---|
static BuiltInServices |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BuiltInServices[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BuiltInServices ClientBus
public static final BuiltInServices ServerBus
public static final BuiltInServices ClientBusErrors
public static final BuiltInServices ServerEchoService
public static BuiltInServices[] values()
for (BuiltInServices c : BuiltInServices.values()) System.out.println(c);
public static BuiltInServices 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 © 2013-2015 JBoss, a division of Red Hat. All Rights Reserved.