Class GeoIndexDefinition
java.lang.Object
org.springframework.data.redis.core.index.RedisIndexDefinition
org.springframework.data.redis.core.index.GeoIndexDefinition
- All Implemented Interfaces:
IndexDefinition
,PathBasedRedisIndexDefinition
public class GeoIndexDefinition
extends RedisIndexDefinition
implements PathBasedRedisIndexDefinition
- Since:
- 1.8
- Author:
- Christoph Strobl
-
Nested Class Summary
Nested classes/interfaces inherited from class org.springframework.data.redis.core.index.RedisIndexDefinition
RedisIndexDefinition.CompositeValueTransformer, RedisIndexDefinition.LowercaseIndexValueTransformer, RedisIndexDefinition.NoOpValueTransformer, RedisIndexDefinition.OrCondition<T>, RedisIndexDefinition.PathCondition
Nested classes/interfaces inherited from interface org.springframework.data.redis.core.index.IndexDefinition
IndexDefinition.Condition<T>, IndexDefinition.IndexingContext
-
Constructor Summary
ConstructorDescriptionGeoIndexDefinition
(String keyspace, String path) Creates newGeoIndexDefinition
.GeoIndexDefinition
(String keyspace, String path, String name) Creates newGeoIndexDefinition
. -
Method Summary
Methods inherited from class org.springframework.data.redis.core.index.RedisIndexDefinition
addCondition, equals, getConditions, getIndexName, getKeyspace, getPath, hashCode, setValueTransformer, valueTransformer
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.data.redis.core.index.IndexDefinition
getConditions, getIndexName, getKeyspace, valueTransformer
Methods inherited from interface org.springframework.data.redis.core.index.PathBasedRedisIndexDefinition
getPath
-
Constructor Details
-
GeoIndexDefinition
Creates newGeoIndexDefinition
.- Parameters:
keyspace
- must not be null.path
-
-
GeoIndexDefinition
Creates newGeoIndexDefinition
.- Parameters:
keyspace
- must not be null.path
-name
- must not be null.
-