Enum LookAndFeelConfiguration.LessVariables
- java.lang.Object
-
- java.lang.Enum<LookAndFeelConfiguration.LessVariables>
-
- com.atlassian.bamboo.configuration.LookAndFeelConfiguration.LessVariables
-
- All Implemented Interfaces:
Serializable
,Comparable<LookAndFeelConfiguration.LessVariables>
- Enclosing class:
- LookAndFeelConfiguration
public static enum LookAndFeelConfiguration.LessVariables extends Enum<LookAndFeelConfiguration.LessVariables>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PRIMARY_HEADER_COLOR
SECONDARY_HEADER_COLOR
-
Field Summary
Fields Modifier and Type Field Description String
lessPropertyName
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LookAndFeelConfiguration.LessVariables
valueOf(String name)
Returns the enum constant of this type with the specified name.static LookAndFeelConfiguration.LessVariables[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PRIMARY_HEADER_COLOR
public static final LookAndFeelConfiguration.LessVariables PRIMARY_HEADER_COLOR
-
SECONDARY_HEADER_COLOR
public static final LookAndFeelConfiguration.LessVariables SECONDARY_HEADER_COLOR
-
-
Field Detail
-
lessPropertyName
public String lessPropertyName
-
-
Method Detail
-
values
public static LookAndFeelConfiguration.LessVariables[] 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 (LookAndFeelConfiguration.LessVariables c : LookAndFeelConfiguration.LessVariables.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LookAndFeelConfiguration.LessVariables valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-