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

io.descoped.dc.api.handler.QueryFeature Maven / Gradle / Ivy

The newest version!
package io.descoped.dc.api.handler;

import java.util.List;

public interface QueryFeature {

    enum Type {
        LIST,
        OBJECT,
        STRING_LITERAL;
    }

    List evaluateList(Object data);

    Object evaluateObject(Object data);

    String evaluateStringLiteral(Object data);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy