Class RuleCondition

java.lang.Object
org.elasticsearch.client.ml.job.config.RuleCondition
All Implemented Interfaces:
org.elasticsearch.common.xcontent.ToXContent, org.elasticsearch.common.xcontent.ToXContentObject

public class RuleCondition
extends java.lang.Object
implements org.elasticsearch.common.xcontent.ToXContentObject
  • Nested Class Summary

    Nested Classes
    Modifier and Type Class Description
    static class  RuleCondition.AppliesTo  

    Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent

    org.elasticsearch.common.xcontent.ToXContent.DelegatingMapParams, org.elasticsearch.common.xcontent.ToXContent.MapParams, org.elasticsearch.common.xcontent.ToXContent.Params
  • Field Summary

    Fields
    Modifier and Type Field Description
    static org.elasticsearch.common.ParseField APPLIES_TO_FIELD  
    static org.elasticsearch.common.xcontent.ConstructingObjectParser<RuleCondition,​java.lang.Void> PARSER  
    static org.elasticsearch.common.ParseField RULE_CONDITION_FIELD  
    static org.elasticsearch.common.ParseField VALUE_FIELD  

    Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent

    EMPTY_PARAMS
  • Constructor Summary

    Constructors
    Constructor Description
    RuleCondition​(RuleCondition.AppliesTo appliesTo, Operator operator, double value)  
  • Method Summary

    Modifier and Type Method Description
    static RuleCondition createTime​(Operator operator, long epochSeconds)  
    boolean equals​(java.lang.Object obj)  
    RuleCondition.AppliesTo getAppliesTo()  
    Operator getOperator()  
    double getValue()  
    int hashCode()  
    org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params)  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject

    isFragment
  • Field Details

    • RULE_CONDITION_FIELD

      public static final org.elasticsearch.common.ParseField RULE_CONDITION_FIELD
    • APPLIES_TO_FIELD

      public static final org.elasticsearch.common.ParseField APPLIES_TO_FIELD
    • VALUE_FIELD

      public static final org.elasticsearch.common.ParseField VALUE_FIELD
    • PARSER

      public static final org.elasticsearch.common.xcontent.ConstructingObjectParser<RuleCondition,​java.lang.Void> PARSER
  • Constructor Details

  • Method Details

    • toXContent

      public org.elasticsearch.common.xcontent.XContentBuilder toXContent​(org.elasticsearch.common.xcontent.XContentBuilder builder, org.elasticsearch.common.xcontent.ToXContent.Params params) throws java.io.IOException
      Specified by:
      toXContent in interface org.elasticsearch.common.xcontent.ToXContent
      Throws:
      java.io.IOException
    • getAppliesTo

      public RuleCondition.AppliesTo getAppliesTo()
    • getOperator

      public Operator getOperator()
    • getValue

      public double getValue()
    • equals

      public boolean equals​(java.lang.Object obj)
      Overrides:
      equals in class java.lang.Object
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class java.lang.Object
    • createTime

      public static RuleCondition createTime​(Operator operator, long epochSeconds)