Enum ReshapeNode.OutputMode

    • Enum Constant Detail

      • JOINED

        public static final ReshapeNode.OutputMode JOINED
        Generate one stream in total by joining all incoming documents together.
      • LAYERED

        public static final ReshapeNode.OutputMode LAYERED
        Generate one stream in total by layering all incoming documents atop of each other.
      • ASSOCIATED_JOINED

        public static final ReshapeNode.OutputMode ASSOCIATED_JOINED
        Generate one stream in total by layering associated atop of each other, disjoint streams after another. A document is considered associated with another document if the former is a parent of the latter. Associated streams must always be supplied after their respective parent.
        See Also:
        StreamDescriptor.getParent()
      • ASSOCIATED_STREAM

        public static final ReshapeNode.OutputMode ASSOCIATED_STREAM
        Generate one stream per parent stream by layering associated streams atop of each other. A document is considered associated with another document if the former is a parent of the latter. Associated streams must always be supplied after their respective parent.
        See Also:
        StreamDescriptor.getParent()
    • Method Detail

      • values

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

        public static ReshapeNode.OutputMode 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