public static enum IRootComponentConfiguration.AWAMECHANISM extends java.lang.Enum<IRootComponentConfiguration.AWAMECHANISM>
Enum Constant and Description |
---|
broadcast
Uses IPv4 broadcast to announce awareness infos in local networks.
|
local
The local discovery uses a file-based mechanism to detect platforms running on the same host.
|
message
Message discovery allows detecting other platforms upon message reception.
|
multicast
Uses IPv4 Multicast to find other platforms.
|
registry
The Registry mechanism implements a master-slave mechanism, where one platform is
the registry.
|
relay
The Relay discovery is the most robust discovery variant.
|
scanner
The IP-Scanner discovery mechanism sends out awareness infos to all IP addresses within the
local network (using port 55668)
|
Modifier and Type | Method and Description |
---|---|
static IRootComponentConfiguration.AWAMECHANISM |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IRootComponentConfiguration.AWAMECHANISM[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IRootComponentConfiguration.AWAMECHANISM broadcast
public static final IRootComponentConfiguration.AWAMECHANISM multicast
public static final IRootComponentConfiguration.AWAMECHANISM message
public static final IRootComponentConfiguration.AWAMECHANISM relay
public static final IRootComponentConfiguration.AWAMECHANISM local
public static final IRootComponentConfiguration.AWAMECHANISM registry
public static final IRootComponentConfiguration.AWAMECHANISM scanner
public static IRootComponentConfiguration.AWAMECHANISM[] values()
for (IRootComponentConfiguration.AWAMECHANISM c : IRootComponentConfiguration.AWAMECHANISM.values()) System.out.println(c);
public static IRootComponentConfiguration.AWAMECHANISM valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null