Class AlignPolicy

java.lang.Object
com.azure.ai.anomalydetector.models.AlignPolicy

public final class AlignPolicy extends Object
An optional field, indicating the manner to align multiple variables.
  • Constructor Details

    • AlignPolicy

      public AlignPolicy()
      Creates an instance of AlignPolicy class.
  • Method Details

    • getAlignMode

      public AlignMode getAlignMode()
      Get the alignMode property: An optional field, indicating how to align different variables to the same time-range. Either Inner or Outer.
      Returns:
      the alignMode value.
    • setAlignMode

      public AlignPolicy setAlignMode(AlignMode alignMode)
      Set the alignMode property: An optional field, indicating how to align different variables to the same time-range. Either Inner or Outer.
      Parameters:
      alignMode - the alignMode value to set.
      Returns:
      the AlignPolicy object itself.
    • getFillNAMethod

      public FillNAMethod getFillNAMethod()
      Get the fillNAMethod property: An optional field, indicating how missing values will be filled. One of Previous, Subsequent, Linear, Zero, Fixed.
      Returns:
      the fillNAMethod value.
    • setFillNAMethod

      public AlignPolicy setFillNAMethod(FillNAMethod fillNAMethod)
      Set the fillNAMethod property: An optional field, indicating how missing values will be filled. One of Previous, Subsequent, Linear, Zero, Fixed.
      Parameters:
      fillNAMethod - the fillNAMethod value to set.
      Returns:
      the AlignPolicy object itself.
    • getPaddingValue

      public Double getPaddingValue()
      Get the paddingValue property: An optional field. Required when fillNAMethod is Fixed.
      Returns:
      the paddingValue value.
    • setPaddingValue

      public AlignPolicy setPaddingValue(Double paddingValue)
      Set the paddingValue property: An optional field. Required when fillNAMethod is Fixed.
      Parameters:
      paddingValue - the paddingValue value to set.
      Returns:
      the AlignPolicy object itself.