Enum RadianceThemingSlices.ColorOverlayType
- java.lang.Object
-
- java.lang.Enum<RadianceThemingSlices.ColorOverlayType>
-
- org.pushingpixels.radiance.theming.api.RadianceThemingSlices.ColorOverlayType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<RadianceThemingSlices.ColorOverlayType>
- Enclosing class:
- RadianceThemingSlices
public static enum RadianceThemingSlices.ColorOverlayType extends java.lang.Enum<RadianceThemingSlices.ColorOverlayType>
Enumeration of available color overlay types. This class is part of officially supported API.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BACKGROUND_FILL
FOCUS_INDICATION
LINE
SELECTION_BACKGROUND_FILL
SELECTION_FOREGROUND
TEXT_BACKGROUND_FILL
-
Constructor Summary
Constructors Modifier Constructor Description private
ColorOverlayType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static RadianceThemingSlices.ColorOverlayType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static RadianceThemingSlices.ColorOverlayType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
LINE
public static final RadianceThemingSlices.ColorOverlayType LINE
-
FOCUS_INDICATION
public static final RadianceThemingSlices.ColorOverlayType FOCUS_INDICATION
-
BACKGROUND_FILL
public static final RadianceThemingSlices.ColorOverlayType BACKGROUND_FILL
-
TEXT_BACKGROUND_FILL
public static final RadianceThemingSlices.ColorOverlayType TEXT_BACKGROUND_FILL
-
SELECTION_BACKGROUND_FILL
public static final RadianceThemingSlices.ColorOverlayType SELECTION_BACKGROUND_FILL
-
SELECTION_FOREGROUND
public static final RadianceThemingSlices.ColorOverlayType SELECTION_FOREGROUND
-
-
Method Detail
-
values
public static RadianceThemingSlices.ColorOverlayType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (RadianceThemingSlices.ColorOverlayType c : RadianceThemingSlices.ColorOverlayType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RadianceThemingSlices.ColorOverlayType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-