All Implemented Interfaces:
Serializable

public class ExcludeMatchingLines extends AbstractMatchingLines
Represents an ExcludeMatchingLines computation task for monitoring.
See Also:
  • Constructor Details

    • ExcludeMatchingLines

      public ExcludeMatchingLines(String type, @NonNull @NonNull Integer column, String regExp, String valueList)
      Construct a new instance of ExcludeMatchingLines.
      Parameters:
      type - The type of the computation task.
      column - The column from which to extract values for matching.
      regExp - The regular expression pattern to match against the column values.
      valueList - The list of values to match against the column values.
  • Method Details

    • toString

      public String toString()
      Description copied from class: Compute
      Returns a formatted string representation of the compute operation, indicating its type.
      Overrides:
      toString in class AbstractMatchingLines
      Returns:
      A string representation of the compute operation.
    • copy

      public ExcludeMatchingLines copy()
      Description copied from class: Compute
      Creates a copy of the current compute operation.
      Specified by:
      copy in class Compute
      Returns:
      A new instance of the concrete compute operation.
    • accept

      public void accept(IComputeProcessor computeProcessor)
      Description copied from class: Compute
      Accepts a compute processor for further processing.
      Specified by:
      accept in class Compute
      Parameters:
      computeProcessor - The compute processor to accept.