java.lang.Object
org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.compute.Compute
org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.compute.AbstractConcat
All Implemented Interfaces:
Serializable
Direct Known Subclasses:
Append, Prepend

public abstract class AbstractConcat extends Compute
An abstract class representing a computation operation for concatenation. Subclasses should provide specific implementations for column and value settings. This class extends the Compute class and includes settings for the column index and a value to concatenate.
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a formatted string representation of the compute operation, indicating its type.
    void
    Updates the compute operation using the provided updater function.

    Methods inherited from class org.sentrysoftware.metricshub.engine.connector.model.monitor.task.source.compute.Compute

    accept, copy

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • 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 Compute
      Returns:
      A string representation of the compute operation.
    • update

      public void update(UnaryOperator<String> updater)
      Description copied from class: Compute
      Updates the compute operation using the provided updater function.
      Specified by:
      update in class Compute
      Parameters:
      updater - The unary operator to apply updates to the compute operation.