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

com.blitline.image.functions.params.LineCap Maven / Gradle / Ivy

There is a newer version: 0.17.1
Show newest version
package com.blitline.image.functions.params;

import com.fasterxml.jackson.annotation.JsonValue;

public enum LineCap {
	BUTT("butt"),
	ROUND("round"),
	SQUARE("square");
	
	private final String blitlineValue;
	
	private LineCap(String blitlineValue) {
		this.blitlineValue = blitlineValue;
	}
	
	@JsonValue
	@Override
	public String toString() {
		return blitlineValue;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy