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

org.bigml.binding.localanomaly.TruePredicate Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 2.1.1
Show newest version
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