Package com.formdev.flatlaf
Enum UIDefaultsLoader.ValueType
- java.lang.Object
-
- java.lang.Enum<UIDefaultsLoader.ValueType>
-
- com.formdev.flatlaf.UIDefaultsLoader.ValueType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<UIDefaultsLoader.ValueType>
- Enclosing class:
- UIDefaultsLoader
static enum UIDefaultsLoader.ValueType extends java.lang.Enum<UIDefaultsLoader.ValueType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOOLEAN
BORDER
CHARACTER
CLASS
COLOR
DIMENSION
FLOAT
FONT
GRAYFILTER
ICON
INSETS
INSTANCE
INTEGER
INTEGERORFLOAT
LAZY
NULL
SCALEDDIMENSION
SCALEDFLOAT
SCALEDINSETS
SCALEDINTEGER
STRING
UNKNOWN
-
Constructor Summary
Constructors Modifier Constructor Description private
ValueType()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static UIDefaultsLoader.ValueType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static UIDefaultsLoader.ValueType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final UIDefaultsLoader.ValueType UNKNOWN
-
STRING
public static final UIDefaultsLoader.ValueType STRING
-
BOOLEAN
public static final UIDefaultsLoader.ValueType BOOLEAN
-
CHARACTER
public static final UIDefaultsLoader.ValueType CHARACTER
-
INTEGER
public static final UIDefaultsLoader.ValueType INTEGER
-
INTEGERORFLOAT
public static final UIDefaultsLoader.ValueType INTEGERORFLOAT
-
FLOAT
public static final UIDefaultsLoader.ValueType FLOAT
-
BORDER
public static final UIDefaultsLoader.ValueType BORDER
-
ICON
public static final UIDefaultsLoader.ValueType ICON
-
INSETS
public static final UIDefaultsLoader.ValueType INSETS
-
DIMENSION
public static final UIDefaultsLoader.ValueType DIMENSION
-
COLOR
public static final UIDefaultsLoader.ValueType COLOR
-
FONT
public static final UIDefaultsLoader.ValueType FONT
-
SCALEDINTEGER
public static final UIDefaultsLoader.ValueType SCALEDINTEGER
-
SCALEDFLOAT
public static final UIDefaultsLoader.ValueType SCALEDFLOAT
-
SCALEDINSETS
public static final UIDefaultsLoader.ValueType SCALEDINSETS
-
SCALEDDIMENSION
public static final UIDefaultsLoader.ValueType SCALEDDIMENSION
-
INSTANCE
public static final UIDefaultsLoader.ValueType INSTANCE
-
CLASS
public static final UIDefaultsLoader.ValueType CLASS
-
GRAYFILTER
public static final UIDefaultsLoader.ValueType GRAYFILTER
-
NULL
public static final UIDefaultsLoader.ValueType NULL
-
LAZY
public static final UIDefaultsLoader.ValueType LAZY
-
-
Method Detail
-
values
public static UIDefaultsLoader.ValueType[] 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 (UIDefaultsLoader.ValueType c : UIDefaultsLoader.ValueType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static UIDefaultsLoader.ValueType 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
-
-