|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Quality>
edu.iris.dmc.criteria.Quality
public enum Quality
The D, R, Q, M are defined in the seed format as written below. the E and B Qualities are supported by DMC request mechanisms.
Enum Constant Summary | |
---|---|
B
Best |
|
D
The state of quality control of the data is indeterminate |
|
E
Indicates everything/all quality |
|
M
Data center modified, time-series values have not been changed. |
|
Q
Quality Controlled Data, some processes have been applied to the data. |
|
R
Raw Waveform Data with no Quality Control |
Method Summary | |
---|---|
static Quality |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Quality[] |
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 Quality E
public static final Quality M
public static final Quality B
public static final Quality Q
public static final Quality R
public static final Quality D
Method Detail |
---|
public static Quality[] values()
for (Quality c : Quality.values()) System.out.println(c);
public static 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 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 |