public enum WaveColor extends Enum<WaveColor>
| Enum Constant and Description |
|---|
AMBER |
BLACK |
BLUE |
BLUE_GREY |
BROWN |
CYAN |
DEEP_ORANGE |
DEEP_PURPLE |
GREEN |
GREY |
INDIGO |
LIGHT |
LIGHT_BLUE |
LIGHT_GREEN |
LIME |
ORANGE |
PINK |
PURPLE |
RED |
TEAL |
THEME |
WHITE |
YELLOW |
| Modifier and Type | Method and Description |
|---|---|
String |
getStyle() |
static WaveColor |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WaveColor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WaveColor RED
public static final WaveColor PINK
public static final WaveColor PURPLE
public static final WaveColor DEEP_PURPLE
public static final WaveColor INDIGO
public static final WaveColor BLUE
public static final WaveColor LIGHT_BLUE
public static final WaveColor CYAN
public static final WaveColor TEAL
public static final WaveColor GREEN
public static final WaveColor LIGHT_GREEN
public static final WaveColor LIME
public static final WaveColor YELLOW
public static final WaveColor AMBER
public static final WaveColor ORANGE
public static final WaveColor DEEP_ORANGE
public static final WaveColor BROWN
public static final WaveColor GREY
public static final WaveColor BLUE_GREY
public static final WaveColor BLACK
public static final WaveColor WHITE
public static final WaveColor LIGHT
public static final WaveColor THEME
public static WaveColor[] values()
for (WaveColor c : WaveColor.values()) System.out.println(c);
public static WaveColor 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 getStyle()
Copyright © 2019–2022 Dominokit. All rights reserved.