cz.mmsparams.api.constants.YesNoNaN Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of MmsParamsAPI Show documentation
Show all versions of MmsParamsAPI Show documentation
Common library for MmsParams system
The newest version!
package cz.mmsparams.api.constants;
import java.io.Serializable;
public enum YesNoNaN implements Serializable
{
YES("YES"),
NO("NO"),
NAN("NAN");
private String value;
YesNoNaN(String value)
{
this.value = value;
}
public String value()
{
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy