Package ghidra.util.bytesearch
Interface PatternFactory
-
public interface PatternFactoryInterface for factories that create Match Pattern classes
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MatchActiongetMatchActionByName(java.lang.String nm)Get a named match actionPostRulegetPostRuleByName(java.lang.String nm)Get a named post match rule by name
-
-
-
Method Detail
-
getMatchActionByName
MatchAction getMatchActionByName(java.lang.String nm)
Get a named match action- Parameters:
nm- name of action to find- Returns:
- match action with the given name, null otherwise
-
getPostRuleByName
PostRule getPostRuleByName(java.lang.String nm)
Get a named post match rule by name- Parameters:
nm- name of the post rule- Returns:
- the post rule with the name, null otherwise
-
-