Interface BusinessDataInfoRepository.Filter
- All Known Implementing Classes:
BusinessDataPersistence.Filter
- Enclosing interface:
- BusinessDataInfoRepository<T>
public static interface BusinessDataInfoRepository.Filter
Defines a filter for
BusinessDataInfo- Since:
- 10.0.2
- API:
- This is a public API.
-
Method Summary
Static MethodsModifier and TypeMethodDescriptioncreatedAt(RelationalOperator operator, Date createdAt) Creates a filter by using the given operator and applying it with the given value toBusinessDataInfo.getCreatedAt().createdByUserName(RelationalOperator operator, String userName) Creates a filter by using the given operator and applying it with the given value toBusinessDataInfo.getCreatedByUserName().modifiedAt(RelationalOperator operator, Date modifiedAt) Creates a filter by using the given operator and applying it with the given value toBusinessDataInfo.getModifiedAt().modifiedByUserName(RelationalOperator operator, String userName) Creates a filter by using the given operator and applying it with the given value toBusinessDataInfo.getModifiedByUserName().
-
Method Details
-
createdAt
Creates a filter by using the given operator and applying it with the given value to
BusinessDataInfo.getCreatedAt().- Parameters:
operator- comparing operatorcreatedAt- filter value- Returns:
BusinessDataInfo.getCreatedAt()filter- API:
- This public API is available in Java.
-
modifiedAt
Creates a filter by using the given operator and applying it with the given value to
BusinessDataInfo.getModifiedAt().- Parameters:
operator- comparing operatormodifiedAt- filter value- Returns:
BusinessDataInfo.getModifiedAt()filter- API:
- This public API is available in Java.
-
createdByUserName
static BusinessDataInfoRepository.Filter createdByUserName(RelationalOperator operator, String userName) Creates a filter by using the given operator and applying it with the given value to
BusinessDataInfo.getCreatedByUserName().- Parameters:
operator- comparing operatoruserName- filter value- Returns:
BusinessDataInfo.getCreatedByUserName()filter- API:
- This public API is available in Java.
-
modifiedByUserName
static BusinessDataInfoRepository.Filter modifiedByUserName(RelationalOperator operator, String userName) Creates a filter by using the given operator and applying it with the given value to
BusinessDataInfo.getModifiedByUserName().- Parameters:
operator- comparing operatoruserName- filter value- Returns:
BusinessDataInfo.getModifiedByUserName()filter- API:
- This public API is available in Java.
-