ttomcat-1778514358873.zip-extract/_dependencies/maven/com.h2database_h2-2.2.220/org/h2/index/SpatialIndex.java

Path
ttomcat-1778514358873.zip-extract/_dependencies/maven/com.h2database_h2-2.2.220/org/h2/index/SpatialIndex.java
Status
scanned
Type
file
Name
SpatialIndex.java
Extension
.java
Programming language
Java
Mime type
text/x-java
File type
Java source, ASCII text
Tag

      
    
Rootfs path

      
    
Size
894 (894 bytes)
MD5
010791325a74b15117e6791f2a679ca3
SHA1
4e05620ab2c7b548bfcb9b3c782a3fe550bf636b
SHA256
21069c1701808c270ea88d747f7bdc4905e9b44883e25591b3db2058e64fd0ad
SHA512

      
    
SHA1_git
d0a33b7d6fda86f0e5933008ade8390c9776c0fb
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
SpatialIndex.java | 894 bytes |

/* * Copyright 2004-2023 H2 Group. Multiple-Licensed under the MPL 2.0, * and the EPL 1.0 (https://h2database.com/html/license.html). * Initial Developer: H2 Group */ package org.h2.index; import org.h2.engine.SessionLocal; import org.h2.result.SearchRow; /** * A spatial index. Spatial indexes are used to speed up searching * spatial/geometric data. */ public interface SpatialIndex { /** * Find a row or a list of rows and create a cursor to iterate over the * result. * * @param session the session * @param first the lower bound * @param last the upper bound * @param intersection the geometry which values should intersect with, or * null for anything * @return the cursor to iterate over the results */ Cursor findByGeometry(SessionLocal session, SearchRow first, SearchRow last, SearchRow intersection); }
Detected license expression
mpl-2.0 AND epl-1.0
Detected license expression (SPDX)
MPL-2.0 AND EPL-1.0
Percentage of license text
8.11
Copyrights
- end_line: 2
  copyright: Copyright 2004-2023 H2 Group. Multiple-Licensed
  start_line: 2
Holders
- holder: H2 Group. Multiple-Licensed
  end_line: 2
  start_line: 2
Authors

      
    
License detections License expression License expression SPDX
mpl_2_0_and_epl_1_0-796bf8d7-f485-3520-923d-e6a4b1ecd2f3 mpl-2.0 AND epl-1.0 MPL-2.0 AND EPL-1.0
URL Start line End line
https://h2database.com/html/license.html 3 3
Package URL License Primary language
pkg:osgi/com.h2database.source@2.2.220