All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.heigit.bigspatialdata.oshpbf.parser.pbf.PosContainer Maven / Gradle / Ivy

There is a newer version: 0.5.11
Show newest version
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);
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy