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

co.streamx.fluent.extree.Queryable Maven / Gradle / Ivy

The newest version!
package co.streamx.fluent.extree;

import co.streamx.fluent.extree.expression.*;

/*public*/ interface Queryable extends Iterable {
	Class getElementType();

	Expression getExpression();

	QueryableFactory getFactory();

	Iterable iterable();

	S single();
}