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

com.nedap.archie.rules.Function Maven / Gradle / Ivy

There is a newer version: 3.12.0
Show newest version
package com.nedap.archie.rules;

import java.util.List;

/**
 * Created by pieter.bos on 06/04/2017.
 */
public class Function extends Expression {
    private String functionName;
    private List arguments;

    /** No argument constructor for kryo cloning and json parsing */
    public Function() {

    }

    public Function(String functionName, List arguments) {
        this.functionName = functionName;
        this.arguments = arguments;
    }

    public String getFunctionName() {
        return functionName;
    }

    public List getArguments() {
        return arguments;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy