/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package utils;

/**
 *
 * @author <a href="mailto:shaun.case@colostate.edu">Shaun Case</a>
 */
 public class Station
{
    private String country;
    private String state;
    private int stateNum;
    private String name;
    private int stationId;
    private double stationX;
    private double stationY;
    private double distance;
    private double elevation;
    private int start;
    private int end;

    public String getCountry() {
        return this.country;
    }
    
    public void setCountry(final String country) {
        this.country = country;
    }
    
    public String getState() {
        return this.state;
    }
    
    public void setState(final String state) {
        this.state = state;
    }
    
    public int getStateNum() {
        return this.stateNum;
    }
    
    public void setStateNum(final int stateNum) {
        this.stateNum = stateNum;
    }
    
    public String getName() {
        return this.name;
    }
    
    public void setName(final String name) {
        this.name = name;
    }
    
    public int getStationId() {
        return this.stationId;
    }
    
    public void setStationId(final int stationId) {
        this.stationId = stationId;
    }
    
    public double getStationX() {
        return this.stationX;
    }
    
    public void setStationX(final double stationX) {
        this.stationX = stationX;
    }
    
    public double getStationY() {
        return this.stationY;
    }
    
    public void setStationY(final double stationY) {
        this.stationY = stationY;
    }
    
    public double getDistance() {
        return this.distance;
    }
    
    public void setDistance(final double distance) {
        this.distance = distance;
    }
    
    public double getElevation() {
        return this.elevation;
    }
    
    public void setElevation(final double elevation) {
        this.elevation = elevation;
    }
    
    public int getStart() {
        return this.start;
    }
    
    public void setStart(final int start) {
        this.start = start;
    }
    
    public int getEnd() {
        return this.end;
    }
    
    public void setEnd(final int end) {
        this.end = end;
    }
}
