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

org.n52.sensorthings.UnitOfMeasurement Maven / Gradle / Ivy

There is a newer version: 1.0.0-alpha.9
Show newest version
package org.n52.sensorthings;

/**
 * @author Jan Schulte
 */
public class UnitOfMeasurement {

    private String symbol;

    private String name;

    private String definition;

    /**
     * @return the symbol
     */
    public String getSymbol() {
        return symbol;
    }

    /**
     * @param symbol the symbol to set
     */
    public void setSymbol(String symbol) {
        this.symbol = symbol;
    }

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the definition
     */
    public String getDefinition() {
        return definition;
    }

    /**
     * @param definition the definition to set
     */
    public void setDefinition(String definition) {
        this.definition = definition;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy