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

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

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

import net.intelie.pipes.types.ClauseInfo;
import net.intelie.pipes.types.FieldInfo;
import net.intelie.pipes.types.Metadata;
import net.intelie.pipes.types.RowFields;

import java.io.Serializable;
import java.util.List;

public interface PropertySource extends Serializable {
    Property timestamp() throws PipeException;

    Property property() throws PipeException;

    Property property(String name) throws PipeException;

    PropertyReplacer makeReplacer(ClauseInfo fields) throws PipeException;

    Metadata metadata();

    PropertySource newSource(Metadata metadata) throws PipeException;

    List defaultProperties();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy