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

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

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

import net.intelie.pipes.types.Level;

public interface Expression extends HasType, PropertySink {
    public static final int SCALAR_MEM = 32;
    public static final int WORD_MEM = 8;
    public static final int GROUP_MEM_PENALTY = 64;

    Level level();

    long ttl();

    long weight();

    void validate(ValidationContext context) throws PipeException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy