Package ghidra.program.database.util
Interface Query
-
- All Known Implementing Classes:
AndQuery,FieldMatchQuery,FieldRangeQuery,NotQuery,OrQuery,StringMatchQuery
public interface QueryQuery interface used to test a record for some condition.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanmatches(Record record)Returns true if the given record matches the querys condition.
-
-
-
Method Detail
-
matches
boolean matches(Record record)
Returns true if the given record matches the querys condition.- Parameters:
record- the record to test for compliance.
-
-