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

com.jwebmp.plugins.materialdesignicons.MaterialDesignIconThemes Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
package com.jwebmp.plugins.materialdesignicons;

import com.jwebmp.core.base.interfaces.ICssClassName;

import static com.jwebmp.core.utilities.StaticStrings.*;

public enum MaterialDesignIconThemes
		implements ICssClassName
{
	Filled,
	Outlined,
	Rounded,
	TwoTone,
	Sharp;

	@Override
	public String toString()
	{
		return "md-" + name().toLowerCase()
		                     .replace(CHAR_UNDERSCORE, CHAR_DASH)
		                     .replaceAll("\\$", "");
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy