All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bazaarvoice.emodb.sor.condition.Condition Maven / Gradle / Ivy

The newest version!
package com.bazaarvoice.emodb.sor.condition;

import com.bazaarvoice.emodb.sor.condition.deser.ConditionDeserializer;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;

import javax.annotation.Nullable;
import java.io.IOException;

/**
 * A boolean test applied against a JSON object.
 * 

* Use {@link Conditions} to create {@code Condition} objects. */ @JsonDeserialize(using = ConditionDeserializer.class) public interface Condition { V visit(ConditionVisitor visitor, @Nullable T context); @JsonValue String toString(); void appendTo(Appendable buf) throws IOException; /** * A rough estimate of the computational complexity for this condition. In many cases this varies based on the * context and cannot be reliably provided in the abstract. This method is not intended to provide a definitive * weight but should be a best estimate only for the purpose of ordering condition evaluation in the context of * an "and", "or", or "map" condition in increasing order of complexity. */ int weight(); boolean equals(@Nullable Object o); int hashCode(); }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy