org.bigml.binding.localanomaly.TruePredicate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bigml-binding Show documentation
Show all versions of bigml-binding Show documentation
An open source Java client that gives you a simple binding to interact with BigML. You can use it to
easily create, retrieve, list, update, and delete BigML resources.
package org.bigml.binding.localanomaly;
import org.bigml.binding.localmodel.Predicate;
import org.json.simple.JSONObject;
/**
* A Predicate that always is True
*/
public class TruePredicate extends Predicate {
public TruePredicate() {
super(null, null, null, null, null);
}
protected TruePredicate(String opType, String operator, String field, Object value, String term) {
super(opType, operator, field, value, term);
}
@Override
public String toRule(JSONObject fields) {
throw new UnsupportedOperationException();
}
@Override
protected boolean isFullTerm(JSONObject fields) {
throw new UnsupportedOperationException();
}
@Override
public boolean apply(JSONObject inputData, JSONObject fields) {
throw new UnsupportedOperationException();
}
@Override
protected boolean applyOperator(Object inputValue) {
throw new UnsupportedOperationException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy