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

jfxtras.scene.layout.responsivepane.Unit Maven / Gradle / Ivy

The newest version!
package jfxtras.scene.layout.responsivepane;

enum Unit {
	INCH("in"), CM("cm");
	
	private Unit(String suffix){
        this.suffix = suffix;
    }
    final String suffix;
    
	public double toInches(double value) {
		if (this.equals(CM)) {
			return value * 0.393701;
		}
		return value;
	}	    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy