case class FieldMatcher(declaringClass: ClassLevelMatcher, annotations: AnnotationsPredicate, theType: Option[FieldType], theName: Option[NamePredicate]) extends SourceElementsMatcher with Product with Serializable
Matches fields based on their name, type, annotations and declaring class.
- Source
- FieldMatcher.scala
- Alphabetic
- By Inheritance
- FieldMatcher
- Serializable
- Product
- Equals
- SourceElementsMatcher
- Function1
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new FieldMatcher(declaringClass: ClassLevelMatcher, annotations: AnnotationsPredicate, theType: Option[FieldType], theName: Option[NamePredicate])
Value Members
- def and(right: SourceElementsMatcher): SourceElementsMatcher
- Definition Classes
- SourceElementsMatcher
- def andThen[A](g: (Set[VirtualSourceElement]) => A): (SomeProject) => A
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- val annotations: AnnotationsPredicate
- final def apply(project: SomeProject): Set[VirtualSourceElement]
- Definition Classes
- SourceElementsMatcher → Function1
- def compose[A](g: (A) => SomeProject): (A) => Set[VirtualSourceElement]
- Definition Classes
- Function1
- Annotations
- @unspecialized()
- val declaringClass: ClassLevelMatcher
- def doesClassFileMatch(classFile: ClassFile)(implicit project: SomeProject): Boolean
- def doesFieldMatch(field: Field): Boolean
- def except(right: SourceElementsMatcher): SourceElementsMatcher
- Definition Classes
- SourceElementsMatcher
- def extension(implicit project: SomeProject): Set[VirtualSourceElement]
- Definition Classes
- FieldMatcher → SourceElementsMatcher
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- val theName: Option[NamePredicate]
- val theType: Option[FieldType]
- def toString(): String
- Definition Classes
- Function1 → AnyRef → Any