Package org.openstreetmap.josm.io
Class MultiFetchServerObjectReader.FetchResult
- java.lang.Object
-
- org.openstreetmap.josm.io.MultiFetchServerObjectReader.FetchResult
-
- Enclosing class:
- MultiFetchServerObjectReader
protected static class MultiFetchServerObjectReader.FetchResult extends java.lang.Object
The class holding the results given byMultiFetchServerObjectReader.Fetcher
. It is only a wrapper of the resultingDataSet
and the collection ofPrimitiveId
that could not have been loaded.
-
-
Field Summary
Fields Modifier and Type Field Description DataSet
dataSet
The resulting data setjava.util.Set<PrimitiveId>
missingPrimitives
The collection of primitive ids that could not have been loadedprivate java.util.Set<java.lang.Long>
rc404
-
Constructor Summary
Constructors Constructor Description FetchResult(DataSet dataSet, java.util.Set<PrimitiveId> missingPrimitives)
Constructs aFetchResult
-
-
-
Field Detail
-
missingPrimitives
public final java.util.Set<PrimitiveId> missingPrimitives
The collection of primitive ids that could not have been loaded
-
rc404
private java.util.Set<java.lang.Long> rc404
-
-
Constructor Detail
-
FetchResult
public FetchResult(DataSet dataSet, java.util.Set<PrimitiveId> missingPrimitives)
Constructs aFetchResult
- Parameters:
dataSet
- The resulting data setmissingPrimitives
- The collection of primitive ids that could not have been loaded
-
-