|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||
java.lang.Objectjava.lang.Enum<EnumFieldQualifier>
org.spase.parser110.EnumFieldQualifier
public enum EnumFieldQualifier
Java class for enumFieldQualifier.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="enumFieldQualifier">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Average"/>
<enumeration value="Component"/>
<enumeration value="Deviation"/>
<enumeration value="Magnitude"/>
<enumeration value="Peak"/>
<enumeration value="Perpendicular"/>
<enumeration value="Variance"/>
<enumeration value="Vector"/>
</restriction>
</simpleType>
| Enum Constant Summary | |
|---|---|
AVERAGE
The statistical mean; the sum of a set of values divided by the number of values in the set. |
|
COMPONENT
A part of a multi-part entity, e.g., the components of a vector. |
|
DEVIATION
The difference between an observed value and the expected value of a quantity. |
|
MAGNITUDE
A measure of the strength or size of a vector quantity. |
|
PEAK
The maximum value for the quantity in question, over a period of time which is usually equal to the cadence. |
|
PERPENDICULAR
At right angles to a given direction. |
|
VARIANCE
A measure of dispersion of a set of data points around their mean value. |
|
VECTOR
A quantity having both magnitude and direction, e.g. |
|
| Method Summary | |
|---|---|
static EnumFieldQualifier |
fromValue(java.lang.String v)
|
java.lang.String |
value()
|
static EnumFieldQualifier |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static EnumFieldQualifier[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final EnumFieldQualifier AVERAGE
public static final EnumFieldQualifier COMPONENT
public static final EnumFieldQualifier DEVIATION
public static final EnumFieldQualifier MAGNITUDE
public static final EnumFieldQualifier PEAK
public static final EnumFieldQualifier PERPENDICULAR
public static final EnumFieldQualifier VARIANCE
public static final EnumFieldQualifier VECTOR
| Method Detail |
|---|
public static final EnumFieldQualifier[] values()
for(EnumFieldQualifier c : EnumFieldQualifier.values())
System.out.println(c);
public static EnumFieldQualifier 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 namepublic java.lang.String value()
public static EnumFieldQualifier fromValue(java.lang.String v)
|
||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||