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

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

package com.nedap.archie.rules;

/**
 * Created by pieter.bos on 27/10/15.
 */
public class Constant extends Leaf {

    private T value;

    public Constant() {

    }

    public Constant(ExpressionType type, T value) {
        setType(type);
        setValue(value);
    }


    public T getValue() {
        return value;
    }

    public void setValue(T value) {
        this.value = value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy