Package org.neo4j.gis.spatial.attributes

Examples of org.neo4j.gis.spatial.attributes.PropertyMapper


   * @param name
   * @return
   */ 
  @Override
  public boolean hasProperty(String name) {
    PropertyMapper mapper = layer.getPropertyMappingManager().getPropertyMapper(name);
    return mapper == null ? hasGeometryProperty(name) : hasGeometryProperty(mapper.from());
  }
View Full Code Here


    return result;
  }
 
  @Override
  public Object getProperty(String name) {
    PropertyMapper mapper = layer.getPropertyMappingManager().getPropertyMapper(name);
    return mapper == null ? getGeometryProperty(name) : mapper.map(getGeometryProperty(mapper.from()));
  }
View Full Code Here

TOP

Related Classes of org.neo4j.gis.spatial.attributes.PropertyMapper

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.