This enum contains the possible default match types for a pdg.AttributePattern.
Values ¶
pdg.attribMatchType.Both
Terms in the pattern without an explicit *
token will automatically be interpreted as *term*
by the pattern parser.
pdg.attribMatchType.Plain
Terms in the pattern will be parsed exactly as they appear in the pattern. This is the default behavior.
pdg.attribMatchType.Prefix
Terms in the pattern without an explicit *
token will automatically be interpreted as *term
by the pattern parser, as if they have a *
token prepended on the term.
pdg.attribMatchType.Suffix
Terms in the pattern without an explicit *
token will automatically be interpreted as term*
by the pattern parser, as if they have a *
token prepended on the term.