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 booleanWhether the variable is already assigned.private booleanWhether the variable is assigned.private final DetailASTIdentifier token. - 
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateFinalVariableCandidate(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.
 
 -