Uses of Class
org.openstreetmap.josm.io.ChangesetQuery
-
Packages that use ChangesetQuery Package Description org.openstreetmap.josm.actions.downloadtasks Provides the classes for JOSMdownload tasks
.org.openstreetmap.josm.gui.dialogs.changeset.query Provides classes allowing to query changesets to the OSM API.org.openstreetmap.josm.io Provides the classes for JOSM input/output support. -
-
Uses of ChangesetQuery in org.openstreetmap.josm.actions.downloadtasks
Fields in org.openstreetmap.josm.actions.downloadtasks declared as ChangesetQuery Modifier and Type Field Description private ChangesetQuery
ChangesetQueryTask.DownloadTask. query
the changeset queryConstructors in org.openstreetmap.josm.actions.downloadtasks with parameters of type ChangesetQuery Constructor Description ChangesetQueryTask(Component parent, ChangesetQuery query)
Creates the task.ChangesetQueryTask(ChangesetQuery query)
Creates the task.DownloadTask(Component parent, ChangesetQuery query)
-
Uses of ChangesetQuery in org.openstreetmap.josm.gui.dialogs.changeset.query
Methods in org.openstreetmap.josm.gui.dialogs.changeset.query that return ChangesetQuery Modifier and Type Method Description ChangesetQuery
AdvancedChangesetQueryPanel. buildChangesetQuery()
Builds the changeset query based on the data entered in the form.ChangesetQuery
BasicChangesetQueryPanel. buildChangesetQuery()
Builds the changeset query.ChangesetQuery
UrlBasedQueryPanel. buildChangesetQuery()
Replies theChangesetQuery
specified in this panel.protected static ChangesetQuery
UrlBasedQueryPanel. buildChangesetQuery(String text)
ChangesetQuery
ChangesetQueryDialog. getChangesetQuery()
Returns the changeset query.Methods in org.openstreetmap.josm.gui.dialogs.changeset.query with parameters of type ChangesetQuery Modifier and Type Method Description void
BBoxRestrictionPanel. fillInQuery(ChangesetQuery query)
Sets the query restrictions onquery
for bbox based restrictions.void
OpenAndCloseStateRestrictionPanel. fillInQuery(ChangesetQuery query)
Sets the query restrictions onquery
for state based restrictions.void
RestrictionPanel. fillInQuery(ChangesetQuery query)
Sets the query restrictions onquery
.void
TimeRestrictionPanel. fillInQuery(ChangesetQuery query)
Sets the query restrictions onquery
for time based restrictions.void
UserRestrictionPanel. fillInQuery(ChangesetQuery query)
Sets the query restrictions onquery
for changeset owner based restrictions. -
Uses of ChangesetQuery in org.openstreetmap.josm.io
Methods in org.openstreetmap.josm.io that return ChangesetQuery Modifier and Type Method Description ChangesetQuery
ChangesetQuery. beingClosed(boolean isClosed)
Restricts the result to changesets which are or aren't closed, depending on the value ofisClosed
ChangesetQuery
ChangesetQuery. beingOpen(boolean isOpen)
Restricts the result to changesets which are or aren't open, depending on the value ofisOpen
static ChangesetQuery
ChangesetQuery. buildFromUrlQuery(String query)
Replies a changeset query object from the query part of a OSM API URL for querying changesets.ChangesetQuery
ChangesetQuery. closedAfter(Instant d)
Restricts the result to changesets which have been closed after the date given byd
.ChangesetQuery
ChangesetQuery. closedAfterAndCreatedBefore(Instant closedAfter, Instant createdBefore)
Restricts the result to changesets which have been closed afterclosedAfter
and which have been created beforecreatedBefore
.protected ChangesetQuery
ChangesetQuery.ChangesetQueryUrlParser. createFromMap(Map<String,String> queryParams)
ChangesetQuery
ChangesetQuery. forChangesetIds(Collection<Long> changesetIds)
Restricts the query to the given changeset ids (which are added to previously added ones).static ChangesetQuery
ChangesetQuery. forCurrentUser()
Replies a changeset query object restricted to the current user, if known.ChangesetQuery
ChangesetQuery. forUser(int uid)
Restricts the query to changesets owned by the user with iduid
.ChangesetQuery
ChangesetQuery. forUser(String userName)
Restricts the query to changesets owned by the user with user nameusername
.ChangesetQuery
ChangesetQuery. inBbox(double minLon, double minLat, double maxLon, double maxLat)
Replies a query which is restricted to a bounding box.ChangesetQuery
ChangesetQuery. inBbox(Bounds bbox)
Replies a query which is restricted to a bounding box given bybbox
.ChangesetQuery
ChangesetQuery. inBbox(LatLon min, LatLon max)
Replies a query which is restricted to a bounding box.ChangesetQuery
ChangesetQuery.ChangesetQueryUrlParser. parse(String query)
Parses the changeset query given as URL query parameters and replies aChangesetQuery
.Methods in org.openstreetmap.josm.io with parameters of type ChangesetQuery Modifier and Type Method Description List<Changeset>
OsmServerChangesetReader. queryChangesets(ChangesetQuery query, ProgressMonitor monitor)
Queries a list
-