Enum InequalityHandling

    • Enum Constant Detail

      • STOP_EVERYONE

        public static final InequalityHandling STOP_EVERYONE
        Parallel iterator will stop everything once one of producers runs out of data
      • PASS_NULL

        public static final InequalityHandling PASS_NULL
        Parallel iterator will keep returning true on hasNext(), but next() will return null instead of DataSet
      • RESET

        public static final InequalityHandling RESET
        Parallel iterator will silently reset underlying producer
      • RELOCATE

        public static final InequalityHandling RELOCATE
        Parallel iterator will ignore this producer, and will use other producers. PLEASE NOTE: This option will invoke cross-device relocation in multi-device systems.
    • Method Detail

      • values

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

        public static InequalityHandling 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