Package de.dlr.gitlab.fame.mpi
Enum MpiFacade.MpiMode
- java.lang.Object
-
- java.lang.Enum<MpiFacade.MpiMode>
-
- de.dlr.gitlab.fame.mpi.MpiFacade.MpiMode
-
- All Implemented Interfaces:
Serializable
,Comparable<MpiFacade.MpiMode>
- Enclosing interface:
- MpiFacade
public static enum MpiFacade.MpiMode extends Enum<MpiFacade.MpiMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NOT_IMPLEMENTED
For testing purposes onlyPARALLEL
Use MPI to run simulations one or more processesSINGLE_CORE
Use no MPI at all and run simulations on one process only
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MpiFacade.MpiMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static MpiFacade.MpiMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARALLEL
public static final MpiFacade.MpiMode PARALLEL
Use MPI to run simulations one or more processes
-
SINGLE_CORE
public static final MpiFacade.MpiMode SINGLE_CORE
Use no MPI at all and run simulations on one process only
-
NOT_IMPLEMENTED
public static final MpiFacade.MpiMode NOT_IMPLEMENTED
For testing purposes only
-
-
Method Detail
-
values
public static MpiFacade.MpiMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MpiFacade.MpiMode c : MpiFacade.MpiMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MpiFacade.MpiMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-