Uses of Interface
io.permazen.index.Index4
-
Packages that use Index4 Package Description io.permazen Abstraction layer allowing access to aDatabase
using normal Java objects.io.permazen.core Core classes for the Permazen Java persistence layer.io.permazen.index Permazen index classes. -
-
Uses of Index4 in io.permazen
Methods in io.permazen that return Index4 Modifier and Type Method Description <V1,V2,V3,V4,T>
Index4<V1,V2,V3,V4,T>JTransaction. queryCompositeIndex(Class<T> targetType, String indexName, Class<V1> value1Type, Class<V2> value2Type, Class<V3> value3Type, Class<V4> value4Type)
Access a composite index on four fields. -
Uses of Index4 in io.permazen.core
Classes in io.permazen.core that implement Index4 Modifier and Type Class Description class
CoreIndex4<V1,V2,V3,V4,T>
Core APIIndex4
implementation representing a composite index on four fields. -
Uses of Index4 in io.permazen.index
Methods in io.permazen.index that return Index4 Modifier and Type Method Description Index4<V1,V2,V3,V4,T>
Index4. withTargetBounds(Bounds<T> bounds)
ImposeBounds
that restrict the range of the target value.Index4<V1,V2,V3,V4,T>
Index4. withValue1Bounds(Bounds<V1> bounds)
ImposeBounds
that restrict the range of the first indexed value.Index4<V1,V2,V3,V4,T>
Index4. withValue2Bounds(Bounds<V2> bounds)
ImposeBounds
that restrict the range of the second indexed value.Index4<V1,V2,V3,V4,T>
Index4. withValue3Bounds(Bounds<V3> bounds)
ImposeBounds
that restrict the range of the third indexed value.Index4<V1,V2,V3,V4,T>
Index4. withValue4Bounds(Bounds<V4> bounds)
ImposeBounds
that restrict the range of the fourth indexed value.
-