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

org.opentripplanner.netex.mapping.support.ServiceAlterationFilter Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package org.opentripplanner.netex.mapping.support;

import org.rutebanken.netex.model.ServiceAlterationEnumeration;

public class ServiceAlterationFilter {

  public static boolean isRunning(
      ServiceAlterationEnumeration serviceAlteration
  ) {
    return serviceAlteration == null || (
        !serviceAlteration.equals(ServiceAlterationEnumeration.CANCELLATION)
            && !serviceAlteration.equals(ServiceAlterationEnumeration.REPLACED)
    );
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy