public enum MaterialColor extends Enum<MaterialColor>
Modifier and Type | Method and Description |
---|---|
String |
getCssClassName() |
static MaterialColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MaterialColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MaterialColor BLUE
public static final MaterialColor RED
public static MaterialColor[] values()
for (MaterialColor c : MaterialColor.values()) System.out.println(c);
public static MaterialColor 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 getCssClassName()
Copyright © 2018 Xalys. All rights reserved.