Package org.openstreetmap.osmosis.core.store

Examples of org.openstreetmap.osmosis.core.store.GenericObjectSerializationFactory


   *
   * @param comparator
   *            The comparator to use for sorting.
   */
  public EntitySorter(Comparator<EntityContainer> comparator) {
    fileBasedSort = new FileBasedSort<EntityContainer>(new GenericObjectSerializationFactory(), comparator, true);
  }
View Full Code Here


   * @param origin
   *            The origin for the bound to set.
   */

  public BoundComputer(String origin) {
    objects = new SimpleObjectStore<EntityContainer>(new GenericObjectSerializationFactory(), "cbbo", true);
    bottom = 0;
    top = 0;
    left = 0;
    right = 0;
    nodesSeen = false;
View Full Code Here

TOP

Related Classes of org.openstreetmap.osmosis.core.store.GenericObjectSerializationFactory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.