org.opentripplanner.routing.util.UniqueIdGenerator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of otp Show documentation
Show all versions of otp Show documentation
The OpenTripPlanner multimodal journey planning system
package org.opentripplanner.routing.util;
/**
* Interface for something that generates integer identifiers.
*
* @author avi
*/
public interface UniqueIdGenerator {
/**
* Generates the identifier. May consider the element.
*
* @param elem
* @return
*/
public int getId(T elem);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy