com.jwebmp.plugins.bootstrap.options.BSBackgroundOptions Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-bootstrap Show documentation
Show all versions of jwebmp-bootstrap Show documentation
The JWebSwing implementation for Bootstrap
package com.jwebmp.plugins.bootstrap.options;
import static com.jwebmp.core.utilities.StaticStrings.*;
/**
* Colour settings for bootstrap 4 beta and up
*/
public enum BSBackgroundOptions
implements IBSComponentOptions
{
Bg_Primary,
Bg_Secondary,
Bg_Success,
Bg_Warning,
Bg_Danger,
Bg_Info,
Bg_Light,
Bg_Dark,
Bg_Transparent,
Border_Primary,
Border_Secondary,
Border_Success,
Border_Warning,
Border_Danger,
Border_Info,
Border_Light,
Border_Dark,
;
@Override
public String toString()
{
return name().toLowerCase()
.replace(CHAR_UNDERSCORE, CHAR_DASH);
}
}