org.onebusaway.gtfs.model.FareAttribute Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of onebusaway-gtfs Show documentation
Show all versions of onebusaway-gtfs Show documentation
A Java library for reading and writing General Transit Feed Spec feeds
/**
* Copyright (C) 2011 Brian Ferris
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.onebusaway.gtfs.model;
public final class FareAttribute extends IdentityBean {
private static final long serialVersionUID = 1L;
private static final int MISSING_VALUE = -999;
private AgencyAndId id;
private float price;
private String currencyType;
private int paymentMethod;
private int transfers = MISSING_VALUE;
private int transferDuration = MISSING_VALUE;
/**
* This is a proposed extension to the GTFS spec
*/
private int journeyDuration = MISSING_VALUE;
public FareAttribute() {
}
public FareAttribute(FareAttribute fa) {
this.id = fa.id;
this.price = fa.price;
this.currencyType = fa.currencyType;
this.paymentMethod = fa.paymentMethod;
this.transfers = fa.transfers;
this.transferDuration = fa.transferDuration;
this.journeyDuration = fa.journeyDuration;
}
@Override
public AgencyAndId getId() {
return id;
}
@Override
public void setId(AgencyAndId id) {
this.id = id;
}
public float getPrice() {
return price;
}
public void setPrice(float price) {
this.price = price;
}
public String getCurrencyType() {
return currencyType;
}
public void setCurrencyType(String currencyType) {
this.currencyType = currencyType;
}
public int getPaymentMethod() {
return paymentMethod;
}
public void setPaymentMethod(int paymentMethod) {
this.paymentMethod = paymentMethod;
}
public boolean isTransfersSet() {
return transfers != MISSING_VALUE;
}
public int getTransfers() {
return transfers;
}
public void setTransfers(int transfers) {
this.transfers = transfers;
}
public void clearTransfers() {
this.transfers = MISSING_VALUE;
}
public boolean isTransferDurationSet() {
return transferDuration != MISSING_VALUE;
}
public int getTransferDuration() {
return transferDuration;
}
public void setTransferDuration(int transferDuration) {
this.transferDuration = transferDuration;
}
public void clearTransferDuration() {
this.transferDuration = MISSING_VALUE;
}
public boolean isJourneyDurationSet() {
return journeyDuration != MISSING_VALUE;
}
public int getJourneyDuration() {
return journeyDuration;
}
public void setJourneyDuration(int journeyDuration) {
this.journeyDuration = journeyDuration;
}
public void clearJourneyDuration() {
this.journeyDuration = MISSING_VALUE;
}
public String toString() {
return "";
}
}