Avoid using protected field in final class

This page is not yet available in Spanish. We are working on its translation.
If you have any questions or feedback about our current translation project, feel free to reach out to us!

Metadata

ID: java-code-style/avoid-protected-in-final-class

Language: Java

Severity: Notice

Category: Code Style

Description

Avoid setting fields as protected inside a final class as they cannot be subclassed.

If flagged, review your class and its usage. Consider adjusting your modifiers and their access.

Non-Compliant Code Examples

public final class Foo {
    private int x;
    protected int y; // visibility should be reviewed

    protected int getY() { // visibility should be reviewed
        return y;
    };
    Foo() {}
}

Compliant Code Examples

public final class Foo {
    private int x;
    public int y;

    public int getY() {
        return y;
    }; 
    Foo() {}
}
https://static.datadoghq.com/static/images/logos/github_avatar.svg https://static.datadoghq.com/static/images/logos/vscode_avatar.svg jetbrains

Seamless integrations. Try Datadog Code Analysis

PREVIEWING: antoine.dussault/service-representation-ga-docs-us1