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

net.intelie.pipes.Property Maven / Gradle / Ivy

There is a newer version: 0.25.5
Show newest version
package net.intelie.pipes;

import net.intelie.pipes.filters.ObjectSink;
import net.intelie.pipes.types.Type;

import java.io.Serializable;

public interface Property extends Serializable, Evaluable, HasType, Hintable {
    String name();

    Iterable args();

    Property indexed(Scalar... args) throws PipeException;

     Property hint(Type type) throws PipeException;

    void evalRaw(Scope parent, Object obj, ObjectSink sink);

    boolean sameProperty(Property other);

    boolean requiresObjectFix();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy