Package | Description |
---|---|
org.springframework.data.domain |
Central domain abstractions especially to be used in combination with the
Repository abstraction. |
org.springframework.data.repository.core.support |
Base classes to implement repositories for various data stores.
|
org.springframework.data.support |
Core support classes.
|
Modifier and Type | Method and Description |
---|---|
ExampleMatcher |
Example.getMatcher()
Get the
ExampleMatcher used. |
static ExampleMatcher |
ExampleMatcher.matching()
Create a new
ExampleMatcher including all non-null properties by default matching all
predicates derived from the example. |
static ExampleMatcher |
ExampleMatcher.matchingAll()
Create a new
ExampleMatcher including all non-null properties by default matching all
predicates derived from the example. |
static ExampleMatcher |
ExampleMatcher.matchingAny()
Create a new
ExampleMatcher including all non-null properties by default matching any
predicate derived from the example. |
default ExampleMatcher |
ExampleMatcher.withIgnoreCase()
Returns a copy of this
ExampleMatcher with ignoring case sensitivity by default. |
ExampleMatcher |
ExampleMatcher.withIgnoreCase(boolean defaultIgnoreCase)
Returns a copy of this
ExampleMatcher with defaultIgnoreCase . |
ExampleMatcher |
ExampleMatcher.withIgnoreCase(String... propertyPaths)
Returns a copy of this
ExampleMatcher with ignore case sensitivity for the propertyPaths . |
default ExampleMatcher |
ExampleMatcher.withIgnoreNullValues()
Returns a copy of this
ExampleMatcher with treatment for null values of
ExampleMatcher.NullHandler.IGNORE . |
ExampleMatcher |
ExampleMatcher.withIgnorePaths(String... ignoredPaths)
Returns a copy of this
ExampleMatcher with the specified propertyPaths . |
default ExampleMatcher |
ExampleMatcher.withIncludeNullValues()
Returns a copy of this
ExampleMatcher with treatment for null values of
ExampleMatcher.NullHandler.INCLUDE . |
ExampleMatcher |
ExampleMatcher.withMatcher(String propertyPath,
ExampleMatcher.GenericPropertyMatcher genericPropertyMatcher)
Returns a copy of this
ExampleMatcher with the specified GenericPropertyMatcher for the
propertyPath . |
default ExampleMatcher |
ExampleMatcher.withMatcher(String propertyPath,
ExampleMatcher.MatcherConfigurer<ExampleMatcher.GenericPropertyMatcher> matcherConfigurer)
Returns a copy of this
ExampleMatcher with the specified GenericPropertyMatcher for the
propertyPath . |
ExampleMatcher |
ExampleMatcher.withNullHandler(ExampleMatcher.NullHandler nullHandler)
Returns a copy of this
ExampleMatcher with the specified nullHandler . |
ExampleMatcher |
ExampleMatcher.withStringMatcher(ExampleMatcher.StringMatcher defaultStringMatcher)
Returns a copy of this
ExampleMatcher with the specified string matching of defaultStringMatcher . |
ExampleMatcher |
ExampleMatcher.withTransformer(String propertyPath,
ExampleMatcher.PropertyValueTransformer propertyValueTransformer)
Returns a copy of this
ExampleMatcher with the specified PropertyValueTransformer for the
propertyPath . |
Modifier and Type | Method and Description |
---|---|
static <T> Example<T> |
Example.of(T probe,
ExampleMatcher matcher)
Create a new
Example using the given ExampleMatcher . |
Constructor and Description |
---|
ExampleMatcherAccessor(ExampleMatcher matcher)
Deprecated.
Creates a new
ExampleMatcherAccessor for the given ExampleMatcher . |
Constructor and Description |
---|
ExampleMatcherAccessor(@NonNull ExampleMatcher matcher) |
Copyright © 2011–2020 Pivotal Software, Inc.. All rights reserved.