All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hfg.xml.XMLSpec Maven / Gradle / Ivy

There is a newer version: 20240423
Show newest version
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;
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy