Package mil.nga.giat.geowave.index

Examples of mil.nga.giat.geowave.index.NullNumericIndexStrategy


  }

  public NullIndex(
      final String id ) {
    super(
        new NullNumericIndexStrategy(
            id),
        new BasicIndexModel(
            new DimensionField[] {}));
  }
View Full Code Here


  @Override
  public void fromBinary(
      final byte[] bytes ) {
    indexModel = new BasicIndexModel(
        new DimensionField[] {});
    indexStrategy = new NullNumericIndexStrategy(
        StringUtils.stringFromBinary(bytes));
  }
View Full Code Here

TOP

Related Classes of mil.nga.giat.geowave.index.NullNumericIndexStrategy

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.