org.heigit.bigspatialdata.oshpbf.parser.pbf.PosContainer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of oshpbf-parser Show documentation
Show all versions of oshpbf-parser Show documentation
The PBF-Parser that transfers osh.pbf-files into database Objects.
package org.heigit.bigspatialdata.oshpbf.parser.pbf;
public class PosContainer {
public final long pos;
public final T content;
public PosContainer(long pos, T content) {
this.pos = pos;
this.content = content;
}
@Override
public String toString() {
return String.format("Pos:%d - %s", pos, content.toString());
}
public static PosContainer get(long pos, T content){
return new PosContainer<>(pos, content);
}
}