com.hfg.xml.XMLSpec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com_hfg Show documentation
Show all versions of com_hfg Show documentation
com.hfg xml, html, svg, and bioinformatics utility library
package com.hfg.xml;
public enum XMLSpec
{
v1_0("1.0"),
v1_1("1.1");
private String mVersion;
private XMLSpec(String inVersion)
{
mVersion = inVersion;
}
public String getVersionString()
{
return mVersion;
}
}