|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Scope> com.android.tools.lint.detector.api.Scope
@Beta public enum Scope
The scope of a detector is the set of files a detector must consider when performing its analysis. This can be used to determine when issues are potentially obsolete, whether a detector should re-run on a file save, etc.
NOTE: This is not a public or final API; if you rely on this be prepared to adjust your code for the next tools release.
Enum Constant Summary | |
---|---|
ALL_CLASS_FILES
The analysis considers all the Java class files together. |
|
ALL_JAVA_FILES
The analysis considers all the Java source files together. |
|
ALL_RESOURCE_FILES
The analysis considers all the resource file. |
|
BINARY_RESOURCE_FILE
The analysis only considers a single binary (typically a bitmap) resource file at a time. |
|
CLASS_FILE
The analysis only considers a single Java class file at a time. |
|
GRADLE_FILE
The analysis considers a Gradle build file |
|
JAVA_FILE
The analysis only considers a single Java source file at a time. |
|
JAVA_LIBRARIES
The analysis considers classes in the libraries for this project. |
|
MANIFEST
The analysis considers the manifest file |
|
OTHER
Scope for other files. |
|
PROGUARD_FILE
The analysis considers the Proguard configuration file |
|
PROPERTY_FILE
The analysis considers Java property files |
|
RESOURCE_FILE
The analysis only considers a single XML resource file at a time. |
|
RESOURCE_FOLDER
The analysis considers the resource folders |
|
TEST_SOURCES
The analysis considers test sources as well |
Field Summary | |
---|---|
static java.util.EnumSet<Scope> |
ALL
All scopes: running lint on a project will check these scopes |
static java.util.EnumSet<Scope> |
ALL_CLASSES_AND_LIBRARIES
Scope-set used for analyzing all class files, including those in libraries |
static java.util.EnumSet<Scope> |
ALL_RESOURCES_SCOPE
Scope-set used for detectors which scan all resources |
static java.util.EnumSet<Scope> |
BINARY_RESOURCE_FILE_SCOPE
Scope-set used for detectors which are affected by a single binary resource file |
static java.util.EnumSet<Scope> |
CLASS_AND_ALL_RESOURCE_FILES
Scope-set used for analyzing individual class files and all resource files |
static java.util.EnumSet<Scope> |
CLASS_FILE_SCOPE
Scope-set used for detectors which are affected by a single Java class file |
static java.util.EnumSet<Scope> |
GRADLE_SCOPE
Scope-set used for detectors which are affected by a single Gradle build file |
static java.util.EnumSet<Scope> |
JAVA_AND_RESOURCE_FILES
Scope-set used for detectors which are affected by single XML and Java source files |
static java.util.EnumSet<Scope> |
JAVA_FILE_SCOPE
Scope-set used for detectors which are affected by a single Java source file |
static java.util.EnumSet<Scope> |
JAVA_LIBRARY_SCOPE
Scope-set used for detectors which are affected by Java libraries |
static java.util.EnumSet<Scope> |
MANIFEST_AND_RESOURCE_SCOPE
Resource XML files and manifest files |
static java.util.EnumSet<Scope> |
MANIFEST_SCOPE
Scope-set used for detectors which are affected by the manifest only |
static java.util.EnumSet<Scope> |
OTHER_SCOPE
Scope-set used for detectors which correspond to some other context |
static java.util.EnumSet<Scope> |
PROGUARD_SCOPE
Scope-set used for detectors which are affected by a single ProGuard class file |
static java.util.EnumSet<Scope> |
PROPERTY_SCOPE
Scope-set used for detectors which correspond to property files |
static java.util.EnumSet<Scope> |
RESOURCE_FILE_SCOPE
Scope-set used for detectors which are affected by a single resource file |
static java.util.EnumSet<Scope> |
RESOURCE_FOLDER_SCOPE
Scope-set used for detectors which are affected by a single resource folder |
Method Summary | |
---|---|
static boolean |
checkSingleFile(java.util.EnumSet<Scope> scopes)
Returns true if the given scope set corresponds to scanning a single file rather than a whole project |
static java.util.EnumSet<Scope> |
infer(java.util.Collection<Project> projects)
Infers a suitable scope to use from the given projects to be analyzed |
static java.util.EnumSet<Scope> |
intersect(java.util.EnumSet<Scope> scope1,
java.util.EnumSet<Scope> scope2)
Returns the intersection of two scope sets |
static Scope |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Scope[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Scope RESOURCE_FILE
Issues which are only affected by a single resource file can be checked for incrementally when a file is edited.
public static final Scope BINARY_RESOURCE_FILE
Issues which are only affected by a single resource file can be checked for incrementally when a file is edited.
public static final Scope RESOURCE_FOLDER
public static final Scope ALL_RESOURCE_FILES
RESOURCE_FILE
; an issue scope is
either considering just a single resource file or all the resources, not
both.
public static final Scope JAVA_FILE
Issues which are only affected by a single Java source file can be checked for incrementally when a Java source file is edited.
public static final Scope ALL_JAVA_FILES
This flag is mutually exclusive with JAVA_FILE
.
public static final Scope CLASS_FILE
Issues which are only affected by a single Java class file can be checked for incrementally when a Java source file is edited and then recompiled.
public static final Scope ALL_CLASS_FILES
This flag is mutually exclusive with CLASS_FILE
.
public static final Scope MANIFEST
public static final Scope PROGUARD_FILE
public static final Scope JAVA_LIBRARIES
public static final Scope GRADLE_FILE
public static final Scope PROPERTY_FILE
public static final Scope TEST_SOURCES
public static final Scope OTHER
Detector.run(Context)
} on the detectors unconditionally.
Field Detail |
---|
public static final java.util.EnumSet<Scope> ALL
public static final java.util.EnumSet<Scope> RESOURCE_FILE_SCOPE
public static final java.util.EnumSet<Scope> RESOURCE_FOLDER_SCOPE
public static final java.util.EnumSet<Scope> ALL_RESOURCES_SCOPE
public static final java.util.EnumSet<Scope> JAVA_FILE_SCOPE
public static final java.util.EnumSet<Scope> CLASS_FILE_SCOPE
public static final java.util.EnumSet<Scope> GRADLE_SCOPE
public static final java.util.EnumSet<Scope> MANIFEST_SCOPE
public static final java.util.EnumSet<Scope> OTHER_SCOPE
public static final java.util.EnumSet<Scope> PROGUARD_SCOPE
public static final java.util.EnumSet<Scope> PROPERTY_SCOPE
public static final java.util.EnumSet<Scope> MANIFEST_AND_RESOURCE_SCOPE
public static final java.util.EnumSet<Scope> JAVA_AND_RESOURCE_FILES
public static final java.util.EnumSet<Scope> CLASS_AND_ALL_RESOURCE_FILES
public static final java.util.EnumSet<Scope> ALL_CLASSES_AND_LIBRARIES
public static final java.util.EnumSet<Scope> JAVA_LIBRARY_SCOPE
public static final java.util.EnumSet<Scope> BINARY_RESOURCE_FILE_SCOPE
Method Detail |
---|
public static Scope[] values()
for (Scope c : Scope.values()) System.out.println(c);
public static Scope valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
java.lang.NullPointerException
- if the argument is nullpublic static boolean checkSingleFile(@NonNull java.util.EnumSet<Scope> scopes)
scopes
- the scope set to check
@NonNull public static java.util.EnumSet<Scope> intersect(@NonNull java.util.EnumSet<Scope> scope1, @NonNull java.util.EnumSet<Scope> scope2)
scope1
- the first set to intersectscope2
- the second set to intersect
@NonNull public static java.util.EnumSet<Scope> infer(@NonNull java.util.Collection<Project> projects)
projects
- the projects to find a suitable scope for
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |