Package org.neo4j.gis.spatial.attributes

Examples of org.neo4j.gis.spatial.attributes.PropertyMapper.map()


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

TOP
Copyright © 2018 www.massapi.com. 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.