Enum StreamConfig.InputRequirement

    • Enum Constant Detail

      • SORTED

        public static final StreamConfig.InputRequirement SORTED
        Records from all sorted inputs are grouped (sorted) by key and are then fed to the operator one group at a time. This "zig-zags" between different inputs if records for the same key arrive on multiple inputs to ensure that the operator sees all records with a key as one consecutive group.
    • Method Detail

      • values

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

        public static StreamConfig.InputRequirement 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