Package nl.b3p.csw.jaxb.gml
Class MeasureType
- java.lang.Object
-
- nl.b3p.csw.jaxb.gml.MeasureType
-
- Direct Known Subclasses:
AngleType,AreaType,GridLengthType,LengthType,ScaleType,SpeedType,TimeType,VolumeType
public class MeasureType extends Object
Number with a scale. The value of uom (Units Of Measure) attribute is a reference to a Reference System for the amount, either a ratio or position scale.Java class for MeasureType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="MeasureType"> <simpleContent> <extension base="<http://www.w3.org/2001/XMLSchema>double"> <attribute name="uom" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" /> </extension> </simpleContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description MeasureType()Default no-arg constructorMeasureType(double value, String uom)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetUom()Gets the value of the uom property.doublegetValue()Gets the value of the value property.voidsetUom(String value)Sets the value of the uom property.voidsetValue(double value)Sets the value of the value property.
-
-
-
Field Detail
-
value
protected double value
-
uom
protected String uom
-
-
Constructor Detail
-
MeasureType
public MeasureType()
Default no-arg constructor
-
MeasureType
public MeasureType(double value, String uom)Fully-initialising value constructor
-
-