Package com.google.gerrit.index.query
Interface Matchable<T>
-
- All Known Implementing Classes:
AccountIsVisibleToPredicate
,AddedPredicate
,AfterPredicate
,AgePredicate
,AndChangeSource
,AndPredicate
,AndSource
,AssigneePredicate
,AttentionSetPredicate
,AuthorPredicate
,BeforePredicate
,BooleanPredicate
,CanSeeChangePredicate
,ChangeIdPredicate
,ChangeIndexPredicate
,ChangeIsVisibleToPredicate
,ChangeRegexPredicate
,ChangeStatusPredicate
,CherryPickOfChangePredicate
,CherryPickOfPatchSetPredicate
,CommentByPredicate
,CommentPredicate
,CommitPredicate
,CommitterPredicate
,DeletedPredicate
,DeltaPredicate
,DestinationPredicate
,DirectoryPredicate
,EditByPredicate
,EqualsFilePredicate
,EqualsLabelPredicate
,EqualsPathPredicate
,ExactAuthorPredicate
,ExactCommitterPredicate
,ExactTopicPredicate
,FileExtensionListPredicate
,FileExtensionPredicate
,FooterPredicate
,FuzzyTopicPredicate
,GroupIsVisibleToPredicate
,GroupPredicate
,HasDraftByPredicate
,HashtagPredicate
,HasStarsPredicate
,IndexedAccountQuery
,IndexedChangeQuery
,IntegerRangeChangePredicate
,IsReviewedPredicate
,IsUnresolvedPredicate
,IsVisibleToPredicate
,IsWatchedByPredicate
,LabelPredicate
,LegacyChangeIdPredicate
,LegacyChangeIdStrPredicate
,LimitPredicate
,MessagePredicate
,NotPredicate
,OrPredicate
,OrSource
,OwnerinPredicate
,OwnerPredicate
,ParentProjectPredicate
,PostFilterPredicate
,ProjectIsVisibleToPredicate
,ProjectPredicate
,ProjectPrefixPredicate
,RefPredicate
,RegexDirectoryPredicate
,RegexPathPredicate
,RegexProjectPredicate
,RegexRefPredicate
,RegexTopicPredicate
,RevertOfPredicate
,ReviewerinPredicate
,ReviewerPredicate
,StarPredicate
,SubmissionIdPredicate
,SubmitRecordPredicate
,SubmittablePredicate
,TimestampRangeChangePredicate
,TrackingIdPredicate
public interface Matchable<T>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getCost()
boolean
match(T object)
Does this predicate match this object?
-
-
-
Method Detail
-
match
boolean match(T object)
Does this predicate match this object?
-
getCost
int getCost()
- Returns:
- a cost estimate to run this predicate, higher figures cost more.
-
-