ttomcat-1778514358873.zip-extract/_dependencies/maven/com.h2database_h2-2.2.220/org/h2/expression/ParameterInterface.java

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

      
    
Rootfs path

      
    
Size
1323 (1.3 KB)
MD5
d3142cad5e481511b103e20bc2b71426
SHA1
a125b45a38a5f339f564edbd4fc93af153c32d64
SHA256
97647d591aa0406849158a43e05231044bf6f20b2f16b6425840bf84c3deb0ff
SHA512

      
    
SHA1_git
a12e5b7a49b0bfa04ae7ac056fd96b98c1ad210b
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
ParameterInterface.java | 1.3 KB |

/* * 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.expression; import org.h2.message.DbException; import org.h2.value.TypeInfo; import org.h2.value.Value; /** * The interface for client side (remote) and server side parameters. */ public interface ParameterInterface { /** * Set the value of the parameter. * * @param value the new value * @param closeOld if the old value (if one is set) should be closed */ void setValue(Value value, boolean closeOld); /** * Get the value of the parameter if set. * * @return the value or null */ Value getParamValue(); /** * Check if the value is set. * * @throws DbException if not set. */ void checkSet() throws DbException; /** * Is the value of a parameter set. * * @return true if set */ boolean isValueSet(); /** * Returns the expected data type if no value is set, or the * data type of the value if one is set. * * @return the data type */ TypeInfo getType(); /** * Check if this column is nullable. * * @return Column.NULLABLE_* */ int getNullable(); }
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
5.59
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