Enum ComputeJobResultPolicy

    • Enum Constant Detail

      • WAIT

        public static final ComputeJobResultPolicy WAIT
        Wait for results if any are still expected. If all results have been received - it will start reducing results.
      • REDUCE

        public static final ComputeJobResultPolicy REDUCE
        Ignore all not yet received results and start reducing results.
    • Method Detail

      • values

        public static ComputeJobResultPolicy[] 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 (ComputeJobResultPolicy c : ComputeJobResultPolicy.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static ComputeJobResultPolicy 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
      • fromOrdinal

        @Nullable
        public static @Nullable ComputeJobResultPolicy fromOrdinal​(byte ord)
        Efficiently gets enumerated value from its ordinal.
        Parameters:
        ord - Ordinal value.
        Returns:
        Enumerated value.