Package sh.stein.carbon
Enum ImageOptions.WindowTheme
- java.lang.Object
-
- java.lang.Enum<ImageOptions.WindowTheme>
-
- sh.stein.carbon.ImageOptions.WindowTheme
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ImageOptions.WindowTheme>
- Enclosing class:
- ImageOptions
public static enum ImageOptions.WindowTheme extends java.lang.Enum<ImageOptions.WindowTheme>
A window theme supported by Carbon.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description OutlinedRoundedEdgesSharpEdges
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImageOptions.WindowThemevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ImageOptions.WindowTheme[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RoundedEdges
public static final ImageOptions.WindowTheme RoundedEdges
-
SharpEdges
public static final ImageOptions.WindowTheme SharpEdges
-
Outlined
public static final ImageOptions.WindowTheme Outlined
-
-
Method Detail
-
values
public static ImageOptions.WindowTheme[] 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 (ImageOptions.WindowTheme c : ImageOptions.WindowTheme.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImageOptions.WindowTheme 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
-
-