Package ghidra.program.database.util
Class FieldRangeQuery
- java.lang.Object
-
- ghidra.program.database.util.FieldRangeQuery
-
-
Constructor Summary
Constructors Constructor Description FieldRangeQuery(int column, Field min, Field max)Constructs a new FieldRangeQuery that tests a records field against a range of values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanmatches(Record record)Returns true if the given record matches the querys condition.
-
-
-
Constructor Detail
-
FieldRangeQuery
public FieldRangeQuery(int column, Field min, Field max)Constructs a new FieldRangeQuery that tests a records field against a range of values.- Parameters:
column- the field index in the record to test.min- the minimum field value to test against.max- the maximum field value to test against.
-
-
Method Detail
-
matches
public boolean matches(Record record)
Description copied from interface:QueryReturns true if the given record matches the querys condition.- Specified by:
matchesin interfaceQuery- Parameters:
record- the record to test for compliance.- See Also:
Query.matches(db.Record)
-
-