Uses of Class
com.puppycrawl.tools.checkstyle.checks.naming.AccessModifier
-
Packages that use AccessModifier 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. -
-
Uses of AccessModifier in com.puppycrawl.tools.checkstyle.checks.naming
Methods in com.puppycrawl.tools.checkstyle.checks.naming that return AccessModifier Modifier and Type Method Description 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 aString
.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.Methods in com.puppycrawl.tools.checkstyle.checks.naming with parameters of type AccessModifier Modifier and Type Method Description void
ParameterNameCheck. setAccessModifiers(AccessModifier... accessModifiers)
Setter to access modifiers of methods where parameters are checked. -
Uses of AccessModifier in com.puppycrawl.tools.checkstyle.utils
Methods in com.puppycrawl.tools.checkstyle.utils that return AccessModifier Modifier and Type Method Description static AccessModifier
CheckUtil. getAccessModifierFromModifiersToken(DetailAST modifiersToken)
ReturnsAccessModifier
based on the information about access modifier taken from the given token of typeTokenTypes.MODIFIERS
.
-