Enum RadianceThemingSlices.IconFilterStrategy
java.lang.Object
java.lang.Enum<RadianceThemingSlices.IconFilterStrategy>
org.pushingpixels.radiance.theming.api.RadianceThemingSlices.IconFilterStrategy
- All Implemented Interfaces:
Serializable
,Comparable<RadianceThemingSlices.IconFilterStrategy>
- Enclosing class:
RadianceThemingSlices
public static enum RadianceThemingSlices.IconFilterStrategy
extends Enum<RadianceThemingSlices.IconFilterStrategy>
Enumerates available icon filter strategies.
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionThe icon is always painted in its original appearance.The icon is themed based on the color scheme that matches the current component state.The icon is themed based on the current text color. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this type with the specified name.values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
ORIGINAL
The icon is always painted in its original appearance. -
THEMED_FOLLOW_TEXT
The icon is themed based on the current text color. -
THEMED_FOLLOW_COLOR_SCHEME
The icon is themed based on the color scheme that matches the current component state.
-
-
Constructor Details
-
IconFilterStrategy
private IconFilterStrategy()
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-