com.tngtech.archunit.lang.syntax.elements.FieldsThat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of archunit Show documentation
Show all versions of archunit Show documentation
A Java architecture test library, to specify and assert architecture rules in plain Java - Module 'archunit'
/*
* Copyright 2014-2023 TNG Technology Consulting GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.tngtech.archunit.lang.syntax.elements;
import com.tngtech.archunit.PublicAPI;
import com.tngtech.archunit.base.DescribedPredicate;
import com.tngtech.archunit.core.domain.JavaClass;
import com.tngtech.archunit.core.domain.properties.HasName;
import com.tngtech.archunit.lang.syntax.ArchRuleDefinition;
import static com.tngtech.archunit.PublicAPI.Usage.ACCESS;
@PublicAPI(usage = ACCESS)
public interface FieldsThat extends MembersThat {
/**
* Matches fields by their raw type. Take for example
*
*
* class Example {
* String someField;
* }
*
*
* Then someField
would be matched by
*
* {@link ArchRuleDefinition#fields() fields()}.{@link GivenFields#that() that()}.{@link FieldsThat#haveRawType(Class) haveRawType(String.class)}
*
* @param type Type matching fields must have
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION haveRawType(Class> type);
/**
* Matches fields that do not have the given raw type. Take for example
*
*
* class Example {
* String someField;
* }
*
*
* Then someField
would be matched by
*
* {@link ArchRuleDefinition#fields() fields()}.{@link GivenFields#that() that()}.{@link FieldsThat#doNotHaveRawType(Class) doNotHaveRawType(Object.class)}
*
* @param type Type matching fields must not have
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION doNotHaveRawType(Class> type);
/**
* Matches fields by the fully qualified name of their raw type. Take for example
*
*
* class Example {
* String someField;
* }
*
*
* Then someField
would be matched by
*
* {@link ArchRuleDefinition#fields() fields()}.{@link GivenFields#that() that()}.{@link FieldsThat#haveRawType(String) haveRawType(String.class.getName())}
*
* @param typeName Name of type matching fields must have
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION haveRawType(String typeName);
/**
* Matches fields that do not have the given fully qualified name of their raw type. Take for example
*
*
* class Example {
* String someField;
* }
*
*
* Then someField
would be matched by
*
* {@link ArchRuleDefinition#fields() fields()}.{@link GivenFields#that() that()}.{@link FieldsThat#doNotHaveRawType(String) doNotHaveRawType(Object.class.getName())}
*
* @param typeName Name of type matching fields must not have
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION doNotHaveRawType(String typeName);
/**
* Matches fields where the raw type of those fields matches the given predicate. Take for example
*
*
* class Example {
* String someField;
* }
*
*
* Then someField
would be matched by
*
* {@link ArchRuleDefinition#fields() fields()}.{@link GivenFields#that() that()}.{@link FieldsThat#haveRawType(DescribedPredicate) haveRawType(assignableTo(Serializable.class))}
*
*
* Note that many predefined {@link DescribedPredicate predicates} can be found within a subclass {@code Predicates} of the
* respective domain object or a common ancestor. For example, {@link DescribedPredicate predicates} targeting
* {@link JavaClass} can be found within {@link JavaClass.Predicates} or one of the respective ancestors like {@link HasName.Predicates}.
*
* @param predicate A predicate determining which types of fields match
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION haveRawType(DescribedPredicate super JavaClass> predicate);
/**
* Matches fields where the raw type of those fields does not match the given predicate. Take for example
*
*
* class Example {
* String someField;
* }
*
*
* Then someField
would be matched by
*
* {@link ArchRuleDefinition#fields() fields()}.{@link GivenFields#that() that()}.{@link FieldsThat#doNotHaveRawType(DescribedPredicate) doNotHaveRawType(assignableTo(List.class))}
*
*
* Note that many predefined {@link DescribedPredicate predicates} can be found within a subclass {@code Predicates} of the
* respective domain object or a common ancestor. For example, {@link DescribedPredicate predicates} targeting
* {@link JavaClass} can be found within {@link JavaClass.Predicates} or one of the respective ancestors like {@link HasName.Predicates}.
*
* @param predicate A predicate determining which types of fields do not match
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION doNotHaveRawType(DescribedPredicate super JavaClass> predicate);
/**
* Matches static fields.
*
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION areStatic();
/**
* Matches non-static fields.
*
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION areNotStatic();
/**
* Matches final fields.
*
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION areFinal();
/**
* Matches non-final fields.
*
* @return A syntax conjunction element, which can be completed to form a full rule
*/
@PublicAPI(usage = ACCESS)
CONJUNCTION areNotFinal();
}