Package net.opengis.gml311
Interface CovarianceElementType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Implementing Classes:
CovarianceElementTypeImpl
public interface CovarianceElementType extends EObject
A representation of the model object 'Covariance Element Type'. An element of a covariance matrix.The following features are supported:
- See Also:
Gml311Package.getCovarianceElementType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigInteger
getColumnIndex()
Returns the value of the 'Column Index' attribute.double
getCovariance()
Returns the value of the 'Covariance' attribute.BigInteger
getRowIndex()
Returns the value of the 'Row Index' attribute.boolean
isSetCovariance()
Returns whether the value of the 'Covariance
' attribute is set.void
setColumnIndex(BigInteger value)
Sets the value of the 'Column Index
' attribute.void
setCovariance(double value)
Sets the value of the 'Covariance
' attribute.void
setRowIndex(BigInteger value)
Sets the value of the 'Row Index
' attribute.void
unsetCovariance()
Unsets the value of the 'Covariance
' attribute.
-
-
-
Method Detail
-
getRowIndex
BigInteger getRowIndex()
Returns the value of the 'Row Index' attribute. Row number of this covariance element value.- Returns:
- the value of the 'Row Index' attribute.
- See Also:
setRowIndex(BigInteger)
,Gml311Package.getCovarianceElementType_RowIndex()
-
setRowIndex
void setRowIndex(BigInteger value)
Sets the value of the 'Row Index
' attribute.- Parameters:
value
- the new value of the 'Row Index' attribute.- See Also:
getRowIndex()
-
getColumnIndex
BigInteger getColumnIndex()
Returns the value of the 'Column Index' attribute. Column number of this covariance element value.- Returns:
- the value of the 'Column Index' attribute.
- See Also:
setColumnIndex(BigInteger)
,Gml311Package.getCovarianceElementType_ColumnIndex()
-
setColumnIndex
void setColumnIndex(BigInteger value)
Sets the value of the 'Column Index
' attribute.- Parameters:
value
- the new value of the 'Column Index' attribute.- See Also:
getColumnIndex()
-
getCovariance
double getCovariance()
Returns the value of the 'Covariance' attribute. Value of covariance matrix element.- Returns:
- the value of the 'Covariance' attribute.
- See Also:
isSetCovariance()
,unsetCovariance()
,setCovariance(double)
,Gml311Package.getCovarianceElementType_Covariance()
-
setCovariance
void setCovariance(double value)
Sets the value of the 'Covariance
' attribute.- Parameters:
value
- the new value of the 'Covariance' attribute.- See Also:
isSetCovariance()
,unsetCovariance()
,getCovariance()
-
unsetCovariance
void unsetCovariance()
Unsets the value of the 'Covariance
' attribute.- See Also:
isSetCovariance()
,getCovariance()
,setCovariance(double)
-
isSetCovariance
boolean isSetCovariance()
Returns whether the value of the 'Covariance
' attribute is set.- Returns:
- whether the value of the 'Covariance' attribute is set.
- See Also:
unsetCovariance()
,getCovariance()
,setCovariance(double)
-
-