Class FinalLocalVariableCheck.FinalVariableCandidate
java.lang.Object
com.puppycrawl.tools.checkstyle.checks.coding.FinalLocalVariableCheck.FinalVariableCandidate
- Enclosing class:
- FinalLocalVariableCheck
Represents information about final local variable candidate.
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate boolean
Whether the variable is already assigned.private boolean
Whether the variable is assigned.private final DetailAST
Identifier token. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
FinalVariableCandidate
(DetailAST variableIdent) Creates new instance. -
Method Summary
-
Field Details
-
variableIdent
Identifier token. -
assigned
Whether the variable is assigned. -
alreadyAssigned
Whether the variable is already assigned.
-
-
Constructor Details
-
FinalVariableCandidate
Creates new instance.- Parameters:
variableIdent
- variable identifier.
-