
com.jwebmp.plugins.materialdesignicons.MaterialDesignIconThemes Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-material-design-icons Show documentation
Show all versions of jwebmp-material-design-icons Show documentation
The JWebSwing implementation for Material Design Icons
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