org.locationtech.jts.geom.Geometry.hashCode()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(0.9k)|赞(0)|评价(0)|浏览(140)

本文整理了Java中org.locationtech.jts.geom.Geometry.hashCode()方法的一些代码示例,展示了Geometry.hashCode()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Geometry.hashCode()方法的具体详情如下:
包路径:org.locationtech.jts.geom.Geometry
类名称:Geometry
方法名:hashCode

Geometry.hashCode介绍

[英]Gets a hash code for the Geometry.
[中]获取几何体的哈希代码。

代码示例

代码示例来源:origin: geotools/geotools

public int hashCode() {
  return geometry.hashCode();
}

代码示例来源:origin: org.locationtech.geomesa/geomesa-cqengine

@Override
  protected int calcHashCode() {
    int result = attribute.hashCode();
    result = 31 * result + value.hashCode();
    return result;
  }
}

代码示例来源:origin: locationtech/jts

private void doTestEquals(Geometry a, Geometry b, boolean equalsGeometry,
  boolean equalsObject, boolean equalsExact, boolean equalsHash) {
  assertEquals(equalsGeometry, a.equals(b));
  assertEquals(equalsObject, a.equals((Object) b));
  assertEquals(equalsExact, a.equalsExact(b));
  assertEquals(equalsHash, a.hashCode() == b.hashCode());
}

相关文章