Enum MpiFacade.MpiMode

    • 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 name
        NullPointerException - if the argument is null