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

co.streamx.fluent.extree.expression.InvocableExpression Maven / Gradle / Ivy

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

import java.util.List;

import lombok.Getter;
import lombok.NonNull;

/**
 * Provides the base class from which the expression that represent invocable operations are derived.
 * 
 * 
 */

@Getter
public abstract class InvocableExpression extends Expression {

	private final List parameters;

	protected InvocableExpression(int expressionType, Class resultType, @NonNull List params) {
		super(expressionType, resultType);

		this.parameters = params;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy