接口 Example.PropertySelector
-
- 所有超级接口:
Serializable
- 所有已知实现类:
Example.AllPropertySelector,Example.NotNullOrZeroPropertySelector,Example.NotNullPropertySelector
- 封闭类:
- Example
public static interface Example.PropertySelector extends Serializable
A strategy for choosing property values for inclusion in the query criteria. Note that property selection (for inclusion) operates separately from excluding a property. Excluded properties are not even passed in to the PropertySelector for consideration.
-
-
方法详细资料
-
include
boolean include(Object propertyValue, String propertyName, Type type)
Determine whether the given property should be used in the criteria.- 参数:
propertyValue- The property value (from the example bean)propertyName- The name of the propertytype- The type of the property- 返回:
trueindicates the property should be included;falseindicates it should not.
-
-