public class HistoryWay extends HistoryOsmPrimitive
| Modifier and Type | Field and Description |
|---|---|
private java.util.List<java.lang.Long> |
nodeIds |
| Constructor and Description |
|---|
HistoryWay(long id,
long version,
boolean visible,
User user,
long changesetId,
java.util.Date timestamp)
Constructs a new
HistoryWay. |
HistoryWay(long id,
long version,
boolean visible,
User user,
long changesetId,
java.util.Date timestamp,
boolean checkHistoricParams)
Constructs a new
HistoryWay with a configurable checking of historic parameters. |
HistoryWay(long id,
long version,
boolean visible,
User user,
long changesetId,
java.util.Date timestamp,
java.util.List<java.lang.Long> nodeIdList)
Constructs a new
HistoryWay with a given list of node ids. |
HistoryWay(Way w)
Constructs a new
HistoryWay from an existing Way. |
| Modifier and Type | Method and Description |
|---|---|
void |
addNode(long ref)
adds a node id to the list nodes of this way
|
java.lang.String |
getDisplayName(HistoryNameFormatter formatter)
Replies the display name of a primitive formatted by
formatter |
long |
getNodeId(int idx)
replies the idx-th node id in the list of node ids of this way
|
java.util.List<java.lang.Long> |
getNodes()
replies an immutable list of the ways node ids
|
int |
getNumNodes()
replies the number of nodes in this way
|
OsmPrimitiveType |
getType()
replies the ways type, i.e.
|
boolean |
isClosed()
Replies true if this way is closed.
|
compareTo, ensurePositiveLong, equals, forOsmPrimitive, get, getChangeset, getChangesetId, getId, getLocalName, getName, getPrimitiveId, getTags, getTimestamp, getUser, getVersion, hashCode, hasTag, isVisible, matches, matches, put, setChangeset, setTags, toStringprivate java.util.List<java.lang.Long> nodeIds
public HistoryWay(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp) throws java.lang.IllegalArgumentException
HistoryWay.id - the id (> 0 required)version - the version (> 0 required)visible - whether the node is still visibleuser - the user (!= null required)changesetId - the changeset id (> 0 required if checkHistoricParams is true)timestamp - the timestamp (!= null required if checkHistoricParams is true)java.lang.IllegalArgumentException - if preconditions are violatedpublic HistoryWay(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, boolean checkHistoricParams) throws java.lang.IllegalArgumentException
HistoryWay with a configurable checking of historic parameters.
This is needed to build virtual HistoryWays for modified ways, which do not have a timestamp and a changeset id.id - the id (> 0 required)version - the version (> 0 required)visible - whether the node is still visibleuser - the user (!= null required)changesetId - the changeset id (> 0 required if checkHistoricParams is true)timestamp - the timestamp (!= null required if checkHistoricParams is true)checkHistoricParams - if true, checks values of changesetId and timestampjava.lang.IllegalArgumentException - if preconditions are violatedpublic HistoryWay(long id, long version, boolean visible, User user, long changesetId, java.util.Date timestamp, java.util.List<java.lang.Long> nodeIdList) throws java.lang.IllegalArgumentException
HistoryWay with a given list of node ids.id - the id (> 0 required)version - the version (> 0 required)visible - whether the node is still visibleuser - the user (!= null required)changesetId - the changeset id (> 0 required if checkHistoricParams is true)timestamp - the timestamp (!= null required if checkHistoricParams is true)nodeIdList - the node ids (!= null required)java.lang.IllegalArgumentException - if preconditions are violatedpublic HistoryWay(Way w)
HistoryWay from an existing Way.w - the waypublic int getNumNodes()
public long getNodeId(int idx) throws java.lang.IndexOutOfBoundsException
idx - the indexjava.lang.IndexOutOfBoundsException - thrown, if idx < 0 || idx >= {#see getNumNodes()public java.util.List<java.lang.Long> getNodes()
public OsmPrimitiveType getType()
OsmPrimitiveType.WAYgetType in class HistoryOsmPrimitivepublic void addNode(long ref)
ref - the node id to addpublic boolean isClosed()
public java.lang.String getDisplayName(HistoryNameFormatter formatter)
HistoryOsmPrimitiveformattergetDisplayName in class HistoryOsmPrimitiveformatter - The formatter used to generate a display name