public static enum IChannelLocator.LocatorType extends Enum<IChannelLocator.LocatorType>
| Enum Constant and Description |
|---|
Local
Local locator type, capable of identifying a channel in the same address
space as the one it was created in
|
TCP
A locator that uses a TCP connection to identify the referenced channel, capable of
identifying a channel from wherever it may be used
|
| Modifier and Type | Method and Description |
|---|---|
static IChannelLocator.LocatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IChannelLocator.LocatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IChannelLocator.LocatorType Local
public static final IChannelLocator.LocatorType TCP
public static IChannelLocator.LocatorType[] values()
for (IChannelLocator.LocatorType c : IChannelLocator.LocatorType.values()) System.out.println(c);
public static IChannelLocator.LocatorType 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 © 2018. All Rights Reserved.