MATSIM
api
core
v01
network
Node.java
Go to the documentation of this file.
1
/* *********************************************************************** *
2
* project: org.matsim.*
3
* Node.java
4
* *
5
* *********************************************************************** *
6
* *
7
* copyright : (C) 2007 by the members listed in the COPYING, *
8
* LICENSE and WARRANTY file. *
9
* email : info at matsim dot org *
10
* *
11
* *********************************************************************** *
12
* *
13
* This program is free software; you can redistribute it and/or modify *
14
* it under the terms of the GNU General Public License as published by *
15
* the Free Software Foundation; either version 2 of the License, or *
16
* (at your option) any later version. *
17
* See also COPYING, LICENSE and WARRANTY file *
18
* *
19
* *********************************************************************** */
20
21
package
org.matsim.api.core.v01.network;
22
23
import
java.util.Map;
24
25
import
org
.
matsim
.
api
.
core
.
v01
.
BasicLocation
;
26
import
org
.
matsim
.
api
.
core
.
v01
.
Coord
;
27
import
org
.
matsim
.
api
.
core
.
v01
.
Id
;
28
import
org
.
matsim
.
api
.
core
.
v01
.
Identifiable
;
29
import
org
.
matsim
.
utils
.
objectattributes
.
attributable
.
Attributable
;
30
39
public
interface
Node
extends
BasicLocation
,
Identifiable
<Node>,
Attributable
{
40
53
public
boolean
addInLink
(
Link
link);
54
68
public
boolean
addOutLink
(
Link
link);
69
76
public
Map<Id<Link>, ? extends
Link
>
getInLinks
();
77
84
public
Map<Id<Link>, ? extends
Link
>
getOutLinks
();
85
86
Link
removeInLink
(
Id<Link>
linkId);
87
88
Link
removeOutLink
(
Id<Link>
outLinkId);
89
90
void
setCoord
(
Coord
coord);
91
92
93
}
org.matsim.api.core.v01.Id
Definition:
Id.java:44
org.matsim.utils.objectattributes.attributable.Attributable
Definition:
Attributable.java:27
org.matsim.api.core.v01.network.Node.addOutLink
boolean addOutLink(Link link)
org.matsim.api.core.v01.network.Node.getInLinks
Map< Id< Link >, ? extends Link > getInLinks()
org
org.matsim.api.core.v01.network.Node.removeInLink
Link removeInLink(Id< Link > linkId)
org.matsim.api.core.v01.Identifiable
Definition:
Identifiable.java:23
org.matsim.utils
org.matsim.utils.objectattributes
org.matsim.api.core.v01.network.Node.setCoord
void setCoord(Coord coord)
org.matsim.api
org.matsim.api.core.v01.Coord
Definition:
Coord.java:35
org.matsim.utils.objectattributes.attributable
Definition:
Attributable.java:22
org.matsim.api.core
org.matsim.api.core.v01.network.Node.addInLink
boolean addInLink(Link link)
org.matsim.api.core.v01.BasicLocation
Definition:
BasicLocation.java:27
org.matsim
org.matsim.api.core.v01.network.Link
Definition:
Link.java:34
org.matsim.api.core.v01.network.Node.getOutLinks
Map< Id< Link >, ? extends Link > getOutLinks()
org.matsim.api.core.v01
Definition:
BasicLocation.java:20
org.matsim.api.core.v01.network.Node.removeOutLink
Link removeOutLink(Id< Link > outLinkId)
org.matsim.api.core.v01.network.Node
Definition:
Node.java:39
Generated by
1.8.13