Package io.jmix.flowui.kit.meta
Enum Class StudioPropertyType
- All Implemented Interfaces:
Serializable
,Comparable<StudioPropertyType>
,Constable
Type of
StudioProperty
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionBig decimal type.Boolean type.Identifier of a component.Double type.Value from a strict list of property options.Float type.Icon type.Integer type.String value or message key with msg:// prefix.Long type.Arbitrary value represented by string with a list of possible options.Size value, e.g.String type.List of values separated with comma symbol. -
Method Summary
Modifier and TypeMethodDescriptionstatic StudioPropertyType
Returns the enum constant of this class with the specified name.static StudioPropertyType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
BIG_DECIMAL
Big decimal type. -
BOOLEAN
Boolean type. -
COMPONENT_ID
Identifier of a component. Must be a valid Java identifier. -
DOUBLE
Double type. -
ENUMERATION
Value from a strict list of property options. -
FLOAT
Float type. -
ICON
Icon type.- See Also:
-
VaadinIcon
-
INTEGER
Integer type. -
LOCALIZED_STRING
String value or message key with msg:// prefix. -
LONG
Long type. -
OPTIONS
Arbitrary value represented by string with a list of possible options. Similar toENUMERATION
, but allows text input. -
SIZE
Size value, e.g. width or height -
STRING
String type. -
VALUES_LIST
List of values separated with comma symbol.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-