public enum FMUCMode extends Enum<FMUCMode>
| Enum Constant and Description |
|---|
MasterMaster
Two FMUC nodes operating such that both will continue to work when a network fails between them.
|
MasterSlave
Two FMUC nodes operating where one, the master, will continue working during a network outage while the slave
will cease to work while it cannot communicate with the master.
|
| Modifier and Type | Method and Description |
|---|---|
static FMUCMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FMUCMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FMUCMode MasterMaster
public static final FMUCMode MasterSlave
public static FMUCMode[] values()
for (FMUCMode c : FMUCMode.values()) System.out.println(c);
public static FMUCMode 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 © 2003–2020 Ignite Realtime. All rights reserved.