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

org.yamcs.xtce.FixedIntegerValue Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.xtce;

/**
 * A simple long value
 * 
 * @author nm
 *
 */
public class FixedIntegerValue extends IntegerValue {
    private static final long serialVersionUID = 200706091239L;
    long value;

    public FixedIntegerValue(long value) {
        this.value = value;
    }

    public long getValue() {
        return value;
    }

    @Override
    public String toString() {
        return "FixedIntegerValue(" + value + ")";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy