org.xdef.impl.parsers.XSParseFloat Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xdef Show documentation
Show all versions of xdef Show documentation
X-definition 4.2 (Open Source Software)
package org.xdef.impl.parsers;
/** Parser of Schema "float" type.
* @author Vaclav Trojan
*/
public class XSParseFloat extends XSParseDouble {
private static final String ROOTBASENAME = "float";
public XSParseFloat() {super();}
@Override
public String parserName() {return ROOTBASENAME;}
@Override
public short parsedType() {return XD_FLOAT;}
}