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

org.onebusaway.gtfs.model.StopTimeProxy Maven / Gradle / Ivy

There is a newer version: 1.3.4
Show newest version
/**
 * Copyright (C) 2012 Google, Inc.
 *
 * 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;

/**
 * 
 * @author bdferris
 * 
 * @see StopTime#setProxy(StopTimeProxy)
 */
public interface StopTimeProxy {

  public Integer getId();

  public void setId(Integer id);

  public Trip getTrip();

  public void setTrip(Trip trip);

  public int getStopSequence();

  public void setStopSequence(int stopSequence);

  public Stop getStop();

  public void setStop(Stop stop);

  public boolean isArrivalTimeSet();

  public int getArrivalTime();

  public void setArrivalTime(int arrivalTime);

  public void clearArrivalTime();

  public boolean isDepartureTimeSet();

  public int getDepartureTime();

  public void setDepartureTime(int departureTime);

  public void clearDepartureTime();

  public String getStopHeadsign();

  public void setStopHeadsign(String headSign);

  public String getRouteShortName();

  public void setRouteShortName(String routeShortName);

  public int getPickupType();

  public void setPickupType(int pickupType);

  public int getDropOffType();

  public void setDropOffType(int dropOffType);

  public boolean isShapeDistTraveledSet();

  public double getShapeDistTraveled();

  public void setShapeDistTraveled(double shapeDistTraveled);

  public void clearShapeDistTraveled();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy