Package uk.org.naptan.StopClassificationStructure.OffStreet

Examples of uk.org.naptan.StopClassificationStructure.OffStreet.Rail


    StopClassificationStructure classification = stopPoint.getStopClassification();
    OffStreet offstreet = classification.getOffStreet();
    if (offstreet == null) {
      return null;
    }
    Rail rail = offstreet.getRail();
    if (rail == null) {
      return null;
    }
    for (AnnotatedRailRefStructure ref : rail.getAnnotatedRailRef()) {
      if (ref.getTiplocRef() != null) {
        return ref.getTiplocRef();
      }
    }
    return null;
View Full Code Here

TOP

Related Classes of uk.org.naptan.StopClassificationStructure.OffStreet.Rail

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.