Uses of Class
com.puppycrawl.tools.checkstyle.api.Scope

Packages that use Scope
com.puppycrawl.tools.checkstyle.api Contains the core API to be used to implement checks. 
 

Uses of Scope in com.puppycrawl.tools.checkstyle.api
 

Methods in com.puppycrawl.tools.checkstyle.api that return Scope
static Scope Scope.getInstance(String aScopeName)
          Scope factory method.
static Scope Scope.getInstance(String aScopeName)
          Scope factory method.
static Scope ScopeUtils.getScopeFromMods(DetailAST aMods)
          Returns the Scope specified by the modifier set.
static Scope ScopeUtils.getScopeFromMods(DetailAST aMods)
          Returns the Scope specified by the modifier set.
static Scope ScopeUtils.getSurroundingScope(DetailAST aAST)
          Returns the scope of the surrounding "block".
static Scope ScopeUtils.getSurroundingScope(DetailAST aAST)
          Returns the scope of the surrounding "block".
static Scope Scope.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Scope Scope.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Scope[] Scope.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
static Scope[] Scope.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.puppycrawl.tools.checkstyle.api with parameters of type Scope
 boolean Scope.isIn(Scope aScope)
          Checks if this scope is a subscope of another scope.
 boolean Scope.isIn(Scope aScope)
          Checks if this scope is a subscope of another scope.
 


Back to the Checkstyle Home Page