1. Project Clover database Fri Jul 17 2026 06:10:26 UTC
  2. Package guru.mikelue.foxglove.jdbc

File SetParameterIndex.java

 

Code metrics

0
0
0
1
9
3
0
-
-
0
-

Classes

Class Line # Actions
SetParameterIndex 9 0 - 0 0
-1.0 -
 

Contributing tests

No tests hitting this source file were found.

Source view

1    package guru.mikelue.foxglove.jdbc;
2   
3    import guru.mikelue.foxglove.ColumnMeta;
4   
5    /**
6    * As the index used to matching certain combination of column meta and value type,
7    * this record is used to store the cache for parameter set.
8    */
 
9    record SetParameterIndex(ColumnMeta meta, Class<?> typeOfValue) {}