Package net.opengis.gml311
Interface FormulaType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
FormulaTypeImpl
public interface FormulaType extends EObject
A representation of the model object 'Formula Type'. Paremeters of a simple formula by which a value using this unit of measure can be converted to the corresponding value using the preferred unit of measure. The formula element contains elements a, b, c and d, whose values use the XML Schema type "double". These values are used in the formula y = (a + bx) / (c + dx), where x is a value using this unit, and y is the corresponding value using the preferred unit. The elements a and d are optional, and if values are not provided, those parameters are considered to be zero. If values are not provided for both a and d, the formula is equivalent to a fraction with numerator and denominator parameters.The following features are supported:
- See Also:
Gml311Package.getFormulaType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getA()
Returns the value of the 'A' attribute.double
getB()
Returns the value of the 'B' attribute.double
getC()
Returns the value of the 'C' attribute.double
getD()
Returns the value of the 'D' attribute.boolean
isSetA()
Returns whether the value of the 'A
' attribute is set.boolean
isSetB()
Returns whether the value of the 'B
' attribute is set.boolean
isSetC()
Returns whether the value of the 'C
' attribute is set.boolean
isSetD()
Returns whether the value of the 'D
' attribute is set.void
setA(double value)
Sets the value of the 'A
' attribute.void
setB(double value)
Sets the value of the 'B
' attribute.void
setC(double value)
Sets the value of the 'C
' attribute.void
setD(double value)
Sets the value of the 'D
' attribute.void
unsetA()
Unsets the value of the 'A
' attribute.void
unsetB()
Unsets the value of the 'B
' attribute.void
unsetC()
Unsets the value of the 'C
' attribute.void
unsetD()
Unsets the value of the 'D
' attribute.
-
-
-
Method Detail
-
getA
double getA()
Returns the value of the 'A' attribute.If the meaning of the 'A' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'A' attribute.
- See Also:
isSetA()
,unsetA()
,setA(double)
,Gml311Package.getFormulaType_A()
-
setA
void setA(double value)
Sets the value of the 'A
' attribute.
-
unsetA
void unsetA()
Unsets the value of the 'A
' attribute.- See Also:
isSetA()
,getA()
,setA(double)
-
isSetA
boolean isSetA()
Returns whether the value of the 'A
' attribute is set.- Returns:
- whether the value of the 'A' attribute is set.
- See Also:
unsetA()
,getA()
,setA(double)
-
getB
double getB()
Returns the value of the 'B' attribute.If the meaning of the 'B' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'B' attribute.
- See Also:
isSetB()
,unsetB()
,setB(double)
,Gml311Package.getFormulaType_B()
-
setB
void setB(double value)
Sets the value of the 'B
' attribute.
-
unsetB
void unsetB()
Unsets the value of the 'B
' attribute.- See Also:
isSetB()
,getB()
,setB(double)
-
isSetB
boolean isSetB()
Returns whether the value of the 'B
' attribute is set.- Returns:
- whether the value of the 'B' attribute is set.
- See Also:
unsetB()
,getB()
,setB(double)
-
getC
double getC()
Returns the value of the 'C' attribute.If the meaning of the 'C' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'C' attribute.
- See Also:
isSetC()
,unsetC()
,setC(double)
,Gml311Package.getFormulaType_C()
-
setC
void setC(double value)
Sets the value of the 'C
' attribute.
-
unsetC
void unsetC()
Unsets the value of the 'C
' attribute.- See Also:
isSetC()
,getC()
,setC(double)
-
isSetC
boolean isSetC()
Returns whether the value of the 'C
' attribute is set.- Returns:
- whether the value of the 'C' attribute is set.
- See Also:
unsetC()
,getC()
,setC(double)
-
getD
double getD()
Returns the value of the 'D' attribute.If the meaning of the 'D' attribute isn't clear, there really should be more of a description here...
- Returns:
- the value of the 'D' attribute.
- See Also:
isSetD()
,unsetD()
,setD(double)
,Gml311Package.getFormulaType_D()
-
setD
void setD(double value)
Sets the value of the 'D
' attribute.
-
unsetD
void unsetD()
Unsets the value of the 'D
' attribute.- See Also:
isSetD()
,getD()
,setD(double)
-
isSetD
boolean isSetD()
Returns whether the value of the 'D
' attribute is set.- Returns:
- whether the value of the 'D' attribute is set.
- See Also:
unsetD()
,getD()
,setD(double)
-
-