public enum ButtonFabColor extends Enum<ButtonFabColor>
Buttons.| Enum Constant and Description |
|---|
COLORED
Apply the accented theme color to the button.
|
FAB_NO_COLOR
Setup a button with no extra coloring.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns the css class name related to this option.
|
static ButtonFabColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ButtonFabColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ButtonFabColor FAB_NO_COLOR
public static final ButtonFabColor COLORED
public static ButtonFabColor[] values()
for (ButtonFabColor c : ButtonFabColor.values()) System.out.println(c);
public static ButtonFabColor valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant
with the specified nameNullPointerException - if the argument is nullpublic String toString()
toString in class Enum<ButtonFabColor>Copyright © 2016 com.github.ilyes4j. All rights reserved.