package org.geotools.wcs.bindings; import org.geotools.wcs.WCS; import org.geotools.xml.*; import javax.xml.namespace.QName; /** * Binding object for the type http://www.opengis.net/wcs:valueEnumType. * * <p> * <pre> * <code> * <complexType name="valueEnumType"> * <annotation> * <documentation>List of all the valid values and/or intervals of values for this variable. For numeric variables, signed values shall be ordered from negative infinity to positive infinity. For intervals, the type and semantic attributes are inherited by children elements, but can be superceded here. </documentation> * </annotation> * <complexContent> * <extension base="wcs:valueEnumBaseType"> * <attribute ref="wcs:type" use="optional"> * <annotation> * <documentation>Should be included if the data type is not string, and the valueEnumBaseType does not include any "interval" elements that include this attribute. </documentation> * </annotation> * </attribute> * <attribute ref="wcs:semantic" use="optional"> * <annotation> * <documentation>Should be included if the semantics or meaning is not clearly specified elsewhere, and the valueEnumBaseType does not include any "interval" elements that include this attribute. </documentation> * </annotation> * </attribute> * </extension> * </complexContent> * </complexType> * * </code> * </pre> * </p> * * @generated * * @source $URL: http://svn.osgeo.org/geotools/trunk/modules/extension/xsd/xsd-wcs/src/main/java/org/geotools/wcs/bindings/ValueEnumTypeBinding.java $ */ public class ValueEnumTypeBinding extends AbstractComplexBinding { /** * @generated */ public QName getTarget() { return WCS.valueEnumType; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Class getType() { return null; } /** * <!-- begin-user-doc --> * <!-- end-user-doc --> * * @generated modifiable */ public Object parse(ElementInstance instance, Node node, Object value) throws Exception { //TODO: implement and remove call to super return super.parse(instance,node,value); } }