
com.peterabeles.autocode.Language Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of autofloat Show documentation
Show all versions of autofloat Show documentation
A minimalist library for converting double (64-bit) numerical Java code into float (32-bit)
The newest version!
/*
* Auto64to32F is released to Public Domain or MIT License. Either maybe used.
*/
package com.peterabeles.autocode;
/**
* Specify which language is being converted
*
* @author Peter Abeles
*/
public enum Language {
JAVA("java"),
KOTLIN("kt");
private String suffix;
Language( String suffix ) {
this.suffix = suffix;
}
public String suffix() {
return this.suffix;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy