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

zhao.algorithmMagic.operands.route.NameRoute Maven / Gradle / Ivy

There is a newer version: 1.42
Show newest version
package zhao.algorithmMagic.operands.route;

import zhao.algorithmMagic.operands.coordinate.Coordinate;

public interface NameRoute> extends Route {
    /**
     * @return 起始坐标的名字
     */
    String getStartingCoordinateName();

    /**
     * @return 终止坐标的名字
     */
    String getEndPointCoordinateName();


    /**
     * 获取到线路的字符串表现形式
     * 

* Get the string representation of the line * * @return 线路的字符窜名称。 *

* The character name of the line. */ String getRouteName(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy