public enum HazelcastConfigurations extends Enum<HazelcastConfigurations> implements Supplier<String>
| Enum Constant and Description |
|---|
HOST |
INSTANCE |
MULTICAST_ENABLE |
PORT |
PORT_AUTO_INCREMENT |
PORT_COUNT |
TCP_IP_JOIN |
| Modifier and Type | Method and Description |
|---|---|
String |
get() |
static HazelcastConfigurations |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HazelcastConfigurations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HazelcastConfigurations INSTANCE
public static final HazelcastConfigurations HOST
public static final HazelcastConfigurations PORT
public static final HazelcastConfigurations PORT_COUNT
public static final HazelcastConfigurations PORT_AUTO_INCREMENT
public static final HazelcastConfigurations MULTICAST_ENABLE
public static final HazelcastConfigurations TCP_IP_JOIN
public static HazelcastConfigurations[] values()
for (HazelcastConfigurations c : HazelcastConfigurations.values()) System.out.println(c);
public static HazelcastConfigurations 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 © 2017–2020 Eclipse Foundation. All rights reserved.