Uses of Class
com.puppycrawl.tools.checkstyle.checks.imports.MismatchStrategy
-
Packages that use MismatchStrategy Package Description com.puppycrawl.tools.checkstyle.checks.imports Contains the Imports checks that are bundled with the main distribution. -
-
Uses of MismatchStrategy in com.puppycrawl.tools.checkstyle.checks.imports
Fields in com.puppycrawl.tools.checkstyle.checks.imports declared as MismatchStrategy Modifier and Type Field Description private MismatchStrategyAbstractImportControl. strategyOnMismatchStrategy in a case if matching allow/disallow rule was not found.Methods in com.puppycrawl.tools.checkstyle.checks.imports that return MismatchStrategy Modifier and Type Method Description private static MismatchStrategyImportControlLoader. getStrategyForImportControl(org.xml.sax.Attributes attributes)Utility to get a strategyOnMismatch property for "import-control" tag.private static MismatchStrategyImportControlLoader. getStrategyForSubpackage(org.xml.sax.Attributes attributes)Utility to get a strategyOnMismatch property for "subpackage" tag.static MismatchStrategyMismatchStrategy. valueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static MismatchStrategy[]MismatchStrategy. values()Returns an array containing the constants of this enum type, in the order they are declared.Constructors in com.puppycrawl.tools.checkstyle.checks.imports with parameters of type MismatchStrategy Constructor Description AbstractImportControl(AbstractImportControl parent, MismatchStrategy strategyOnMismatch)Construct a child node.PkgImportControl(PkgImportControl parent, java.lang.String subPackageName, boolean regex, MismatchStrategy strategyOnMismatch)Construct a sub-package node.PkgImportControl(java.lang.String packageName, boolean regex, MismatchStrategy strategyOnMismatch)Construct a root, package node.
-