Package | Description |
---|---|
com.puppycrawl.tools.checkstyle.checks.naming |
Contains the Naming conventions checks
that are bundled with the main distribution.
|
com.puppycrawl.tools.checkstyle.utils |
Contains utils classes for checkstyle.
|
Modifier and Type | Field and Description |
---|---|
private AccessModifier[] |
ParameterNameCheck.accessModifiers
Access modifiers of methods which should be checked.
|
Modifier and Type | Method and Description |
---|---|
private static AccessModifier |
ParameterNameCheck.getAccessModifier(DetailAST ast)
Returns the access modifier of the method/constructor at the specified AST.
|
static AccessModifier |
AccessModifier.getInstance(java.lang.String modifierName)
Factory method which returns an AccessModifier instance that corresponds to the
given access modifier name represented as a
String . |
static AccessModifier |
AccessModifier.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccessModifier[] |
AccessModifier.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
private boolean |
ParameterNameCheck.matchAccessModifiers(AccessModifier accessModifier)
Checks whether a method has the correct access modifier to be checked.
|
void |
ParameterNameCheck.setAccessModifiers(AccessModifier... accessModifiers)
Sets access modifiers of methods which should be checked.
|
Modifier and Type | Method and Description |
---|---|
static AccessModifier |
CheckUtils.getAccessModifierFromModifiersToken(DetailAST modifiersToken)
Returns
AccessModifier based on the information about access modifier
taken from the given token of type TokenTypes.MODIFIERS . |