public enum ColorShade extends Enum<ColorShade>
| Modifier and Type | Method and Description |
|---|---|
String |
asFieldNameExtension() |
String |
getNameExtension() |
String |
getStyleExtension() |
static ColorShade |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColorShade[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColorShade NONE
public static final ColorShade L1
public static final ColorShade L2
public static final ColorShade L3
public static final ColorShade L4
public static final ColorShade L5
public static final ColorShade D1
public static final ColorShade D2
public static final ColorShade D3
public static final ColorShade D4
public static ColorShade[] values()
for (ColorShade c : ColorShade.values()) System.out.println(c);
public static ColorShade 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 getStyleExtension()
public String getNameExtension()
public String asFieldNameExtension()
Copyright © 2019–2022 Dominokit. All rights reserved.