Enum MiniBatchMode

java.lang.Object
java.lang.Enum<MiniBatchMode>
org.apache.flink.table.planner.plan.trait.MiniBatchMode
All Implemented Interfaces:
Serializable, Comparable<MiniBatchMode>

public enum MiniBatchMode extends Enum<MiniBatchMode>
The type of mini-batch interval: rowtime or proctime.
  • Enum Constant Summary

    Enum Constants
    Enum Constant
    Description
    Default value, meaning no mini-batch interval is required.
    An operator in #ProcTime mode requires watermarks emitted in proctime interval, i.e., unbounded group agg with mini-batch enabled.
    An operator in #RowTime mode requires watermarks extracted from elements, and emitted in rowtime interval, e.g., window, window join...
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the enum constant of this type with the specified name.
    static MiniBatchMode[]
    Returns an array containing the constants of this enum type, in the order they are declared.

    Methods inherited from class java.lang.Enum

    clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

    Methods inherited from class java.lang.Object

    getClass, notify, notifyAll, wait, wait, wait
  • Enum Constant Details

    • ProcTime

      public static final MiniBatchMode ProcTime
      An operator in #ProcTime mode requires watermarks emitted in proctime interval, i.e., unbounded group agg with mini-batch enabled.
    • RowTime

      public static final MiniBatchMode RowTime
      An operator in #RowTime mode requires watermarks extracted from elements, and emitted in rowtime interval, e.g., window, window join...
    • None

      public static final MiniBatchMode None
      Default value, meaning no mini-batch interval is required.
  • Method Details

    • values

      public static MiniBatchMode[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

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