Package org.goplanit.service.routed
Interface RoutedTrips<T extends RoutedTrip>
-
- All Superinterfaces:
Cloneable
,Iterable<T>
,LongMapWrapper<T>
,ManagedIdEntities<T>
,MapWrapper<Long,T>
- All Known Subinterfaces:
RoutedTripsFrequency
,RoutedTripsSchedule
- All Known Implementing Classes:
RoutedTripsFrequencyImpl
,RoutedTripsImpl
,RoutedTripsScheduleImpl
public interface RoutedTrips<T extends RoutedTrip> extends ManagedIdEntities<T>
Base class for routed trips container for some derived type of RoutedTrip (either schedule or frequency based for example).- Author:
- markr
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RoutedTripFactory<T>
getFactory()
Factory to create instance of managed id entity (for this container class)-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
Methods inherited from interface org.goplanit.utils.wrapper.LongMapWrapper
get, remove
-
Methods inherited from interface org.goplanit.utils.id.ManagedIdEntities
clone, containsKey, getManagedIdClass, recreateIds, recreateIds, reset
-
Methods inherited from interface org.goplanit.utils.wrapper.MapWrapper
addAll, clear, contains, findFirst, forEachIn, get, getFirst, getKeyByValue, isEmpty, register, remove, size, toCollection, valuesAsNewSet
-
-
-
-
Method Detail
-
getFactory
RoutedTripFactory<T> getFactory()
Factory to create instance of managed id entity (for this container class)- Specified by:
getFactory
in interfaceManagedIdEntities<T extends RoutedTrip>
- Returns:
- entity factory
-
-