public static enum NbGradleProject.Quality extends Enum<NbGradleProject.Quality>
Gradle project is associated with the quality of the information available at the time. The quality of data can be improved, by reloading the project.
Enum Constant and Description |
---|
EVALUATED
The data of this project is unreliable.
|
FALLBACK
The data of this project is unreliable, based on heuristics.
|
FULL
The data of this project is reliable, full dependency information is available offline.
|
FULL_ONLINE
The data of this project is reliable.
|
SIMPLE
The data of this project is reliable, dependency information can be partial though.
|
Modifier and Type | Method and Description |
---|---|
boolean |
atLeast(NbGradleProject.Quality q) |
boolean |
betterThan(NbGradleProject.Quality q) |
boolean |
notBetterThan(NbGradleProject.Quality q) |
static NbGradleProject.Quality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NbGradleProject.Quality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
boolean |
worseThan(NbGradleProject.Quality q) |
public static final NbGradleProject.Quality FALLBACK
public static final NbGradleProject.Quality EVALUATED
build.gradle
file. The IDE cannot reload it but tries to work with
the previously retrieved information.public static final NbGradleProject.Quality SIMPLE
public static final NbGradleProject.Quality FULL
public static final NbGradleProject.Quality FULL_ONLINE
public static NbGradleProject.Quality[] values()
public static NbGradleProject.Quality valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic boolean betterThan(NbGradleProject.Quality q)
public boolean atLeast(NbGradleProject.Quality q)
public boolean worseThan(NbGradleProject.Quality q)
public boolean notBetterThan(NbGradleProject.Quality q)