public final class IllegalThrowsCheck extends AbstractCheck
This check can be used to ensure that types are not declared to be thrown.
Declaring that a method throws java.lang.Error
or
java.lang.RuntimeException
is almost never acceptable.
illegalClassNames
- Specify throw class names to reject.
Default value is Error, RuntimeException, Throwable, java.lang.Error,
java.lang.RuntimeException, java.lang.Throwable
.
ignoredMethodNames
- Specify names of methods to ignore.
Default value is finalize
.
ignoreOverriddenMethods
- allow to ignore checking overridden methods
(marked with Override
or java.lang.Override
annotation).
Default value is true
.
To configure the check:
<module name="IllegalThrows"/>
To configure the check rejecting throws NullPointerException from methods:
<module name="IllegalThrows"> <property name="illegalClassNames" value="NullPointerException"/> </module>
To configure the check ignoring method named "foo()":
<module name="IllegalThrows"> <property name="ignoredMethodNames" value="foo"/> </module>
To configure the check to warn on overridden methods:
<module name="IllegalThrows"> <property name="ignoreOverriddenMethods" value="false"/> </module>
AutomaticBean.OutputStreamOptions
Modifier and Type | Field and Description |
---|---|
static java.lang.String |
MSG_KEY
A key is pointing to the warning message text in "messages.properties"
file.
|
Constructor and Description |
---|
IllegalThrowsCheck() |
Modifier and Type | Method and Description |
---|---|
int[] |
getAcceptableTokens()
The configurable token set.
|
int[] |
getDefaultTokens()
Returns the default token a check is interested in.
|
int[] |
getRequiredTokens()
The tokens that this check must be registered for.
|
void |
setIgnoredMethodNames(java.lang.String... methodNames)
Setter to specify names of methods to ignore.
|
void |
setIgnoreOverriddenMethods(boolean ignoreOverriddenMethods)
Setter to allow to ignore checking overridden methods
(marked with
Override or java.lang.Override annotation). |
void |
setIllegalClassNames(java.lang.String... classNames)
Setter to specify throw class names to reject.
|
void |
visitToken(DetailAST detailAST)
Called to process a token.
|
beginTree, clearMessages, destroy, finishTree, getFileContents, getLine, getLines, getMessages, getTabWidth, getTokenNames, init, isCommentNodesRequired, leaveToken, log, log, log, setFileContents, setTabWidth, setTokens
finishLocalSetup, getCustomMessages, getId, getMessageBundle, getSeverity, getSeverityLevel, setId, setSeverity
configure, contextualize, getConfiguration, setupChild
public static final java.lang.String MSG_KEY
public IllegalThrowsCheck()
public void setIllegalClassNames(java.lang.String... classNames)
classNames
- array of illegal exception classespublic int[] getDefaultTokens()
AbstractCheck
getDefaultTokens
in class AbstractCheck
TokenTypes
public int[] getRequiredTokens()
AbstractCheck
getRequiredTokens
in class AbstractCheck
TokenTypes
public int[] getAcceptableTokens()
AbstractCheck
getAcceptableTokens
in class AbstractCheck
TokenTypes
public void visitToken(DetailAST detailAST)
AbstractCheck
visitToken
in class AbstractCheck
detailAST
- the token to processpublic void setIgnoredMethodNames(java.lang.String... methodNames)
methodNames
- array of ignored method namespublic void setIgnoreOverriddenMethods(boolean ignoreOverriddenMethods)
Override
or java.lang.Override
annotation).ignoreOverriddenMethods
- Check's property.Copyright © 2001-2019. All Rights Reserved.