public static enum DomainConfiguration.DomainMode extends Enum<DomainConfiguration.DomainMode>
Enum Constant and Description |
---|
DYNAMIC
Dynamic distributed mode where nodes can be attached or detached at runtime
|
STATIC
Static distributed mode
|
Modifier and Type | Method and Description |
---|---|
static DomainConfiguration.DomainMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DomainConfiguration.DomainMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DomainConfiguration.DomainMode STATIC
public static final DomainConfiguration.DomainMode DYNAMIC
public static DomainConfiguration.DomainMode[] values()
for (DomainConfiguration.DomainMode c : DomainConfiguration.DomainMode.values()) System.out.println(c);
public static DomainConfiguration.DomainMode 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 © 2005-2016 Linagora. All Rights Reserved.