Interface MembersShould<CONJUNCTION extends MembersShouldConjunction<?>>

    • Method Detail

      • haveName

        @PublicAPI(usage=ACCESS)
        CONJUNCTION haveName​(java.lang.String name)
        Asserts that members have a certain name (i.e. field name, method name or JavaConstructor.CONSTRUCTOR_NAME).
        Parameters:
        name - The member name
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notHaveName

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notHaveName​(java.lang.String name)
        Asserts that members do not have a certain name (i.e. field name, method name or JavaConstructor.CONSTRUCTOR_NAME).
        Parameters:
        name - The member name
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • haveNameMatching

        @PublicAPI(usage=ACCESS)
        CONJUNCTION haveNameMatching​(java.lang.String regex)
        Asserts that members have a name (i.e. field name, method name or JavaConstructor.CONSTRUCTOR_NAME) matching a given regular expression.
        Parameters:
        regex - A regular expression
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • haveNameNotMatching

        @PublicAPI(usage=ACCESS)
        CONJUNCTION haveNameNotMatching​(java.lang.String regex)
        Asserts that members have a name (i.e. field name, method name or JavaConstructor.CONSTRUCTOR_NAME) not matching a given regular expression.
        Parameters:
        regex - A regular expression
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • haveFullNameNotMatching

        @PublicAPI(usage=ACCESS)
        CONJUNCTION haveFullNameNotMatching​(java.lang.String regex)
        Asserts that members have a full name not matching a given regular expression (compare JavaField.getFullName() and JavaCodeUnit.getFullName()).
        Parameters:
        regex - A regular expression
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • bePublic

        @PublicAPI(usage=ACCESS)
        CONJUNCTION bePublic()
        Asserts that members are public.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBePublic

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBePublic()
        Asserts that members are non-public.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beProtected

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beProtected()
        Asserts that members are protected.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeProtected

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeProtected()
        Asserts that members are non-protected.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • bePackagePrivate

        @PublicAPI(usage=ACCESS)
        CONJUNCTION bePackagePrivate()
        Asserts that members are package private.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBePackagePrivate

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBePackagePrivate()
        Asserts that members are non-package private.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • bePrivate

        @PublicAPI(usage=ACCESS)
        CONJUNCTION bePrivate()
        Asserts that members are private.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBePrivate

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBePrivate()
        Asserts that members are non-private.
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beAnnotatedWith​(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
        Asserts that members are annotated with a certain type of annotation.
        Parameters:
        annotationType - Specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeAnnotatedWith​(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
        Asserts that members are not annotated with a certain type of annotation.
        Parameters:
        annotationType - Specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beAnnotatedWith​(java.lang.String annotationTypeName)
        Asserts that members are annotated with a certain type of annotation.
        Parameters:
        annotationTypeName - Fully qualified class name of a specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeAnnotatedWith​(java.lang.String annotationTypeName)
        Asserts that members are not annotated with a certain type of annotation.
        Parameters:
        annotationTypeName - Fully qualified class name of a specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beAnnotatedWith​(DescribedPredicate<? super JavaAnnotation<?>> predicate)
        Asserts that members are annotated with an annotation matching the supplied predicate.
        Parameters:
        predicate - A predicate defining matching JavaAnnotations
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeAnnotatedWith​(DescribedPredicate<? super JavaAnnotation<?>> predicate)
        Asserts that members are not annotated with an annotation matching the supplied predicate.
        Parameters:
        predicate - A predicate defining matching JavaAnnotations
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beMetaAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beMetaAnnotatedWith​(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
        Asserts that members are meta-annotated with a certain type of annotation. A meta-annotation is an annotation that is declared on another annotation.
        Parameters:
        annotationType - Specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeMetaAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeMetaAnnotatedWith​(java.lang.Class<? extends java.lang.annotation.Annotation> annotationType)
        Asserts that members are not meta-annotated with a certain type of annotation. A meta-annotation is an annotation that is declared on another annotation.
        Parameters:
        annotationType - Specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beMetaAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beMetaAnnotatedWith​(java.lang.String annotationTypeName)
        Asserts that members are meta-annotated with a certain type of annotation. A meta-annotation is an annotation that is declared on another annotation.
        Parameters:
        annotationTypeName - Fully qualified class name of a specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeMetaAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeMetaAnnotatedWith​(java.lang.String annotationTypeName)
        Asserts that members are not meta-annotated with a certain type of annotation. A meta-annotation is an annotation that is declared on another annotation.
        Parameters:
        annotationTypeName - Fully qualified class name of a specific type of Annotation
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beMetaAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beMetaAnnotatedWith​(DescribedPredicate<? super JavaAnnotation<?>> predicate)
        Asserts that members are meta-annotated with an annotation matching the supplied predicate. A meta-annotation is an annotation that is declared on another annotation.
        Parameters:
        predicate - A predicate defining matching JavaAnnotations
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeMetaAnnotatedWith

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeMetaAnnotatedWith​(DescribedPredicate<? super JavaAnnotation<?>> predicate)
        Asserts that members are not meta-annotated with an annotation matching the supplied predicate. A meta-annotation is an annotation that is declared on another annotation.
        Parameters:
        predicate - A predicate defining matching JavaAnnotations
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beDeclaredIn

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beDeclaredIn​(java.lang.Class<?> javaClass)
        Asserts that members are declared within the supplied class.

        E.g.
        
         members().should().beDeclaredIn(Example.class)
         
        would be violated by someField in
        
         class AnyOther {
             Object someField;
         }
        Parameters:
        javaClass - A class that members should be declared in
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeDeclaredIn

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeDeclaredIn​(java.lang.Class<?> javaClass)
        Asserts that members are not declared within the supplied class.

        E.g.
        
         members().should().notBeDeclaredIn(Example.class)
         
        would be violated by someField in
        
         class Example {
             Object someField;
         }
        Parameters:
        javaClass - A class that members should not be declared in
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • beDeclaredIn

        @PublicAPI(usage=ACCESS)
        CONJUNCTION beDeclaredIn​(java.lang.String className)
        Asserts that members are declared within a class of the supplied class name.

        E.g.
        
         members().should().beDeclaredIn(Example.class.getName())
         
        would be violated by someField in
        
         class AnyOther {
             Object someField;
         }
        Parameters:
        className - Fully qualified name of a class that members should be declared in
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule
      • notBeDeclaredIn

        @PublicAPI(usage=ACCESS)
        CONJUNCTION notBeDeclaredIn​(java.lang.String className)
        Asserts that members are not declared within a class of the supplied class name.

        E.g.
        
         members().should().notBeDeclaredIn(Example.class.getName())
         
        would be violated by someField in
        
         class Example {
             Object someField;
         }
        Parameters:
        className - Fully qualified name of a class that members must not be declared in to match
        Returns:
        A syntax element that can either be used as working rule, or to continue specifying a more complex rule