|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<SqlProcessor.FilterStatus>
org.sqlproc.engine.impl.SqlProcessor.FilterStatus
static enum SqlProcessor.FilterStatus
This status is the result of the filters processing, based on the next rules:
in the case there are no filters
- there are activeFilters, the artifact is dead - NOK
- otherwise the artifact is ok - OK
in the case there are filters
- there are no activeFilters, the artifact is ok, but lower priority - OK_LOWER
- there are activeFilters, and the intersection is not empty, the artifact is ok - OK
- there are activeFilters, and the intersection is empty, the artifact is dead - NOK
| Enum Constant Summary | |
|---|---|
NOK
The related artifact won't be used |
|
OK
The related artifact will be used |
|
OK_LOWER
The related artifact will be used, but with lower priority |
|
| Method Summary | |
|---|---|
static SqlProcessor.FilterStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static SqlProcessor.FilterStatus[] |
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 SqlProcessor.FilterStatus NOK
public static final SqlProcessor.FilterStatus OK_LOWER
public static final SqlProcessor.FilterStatus OK
| Method Detail |
|---|
public static SqlProcessor.FilterStatus[] values()
for (SqlProcessor.FilterStatus c : SqlProcessor.FilterStatus.values()) System.out.println(c);
public static SqlProcessor.FilterStatus valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||