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 ConstantDescriptionIdentifier of an action defined in view.Big decimal type.Boolean type.ID of a collection data container.Identifier of a component.Identifier of a component defined in view.ID of a data containerID of a data loader.ID of a datatype.Double type.FQN of Entity class.Names of Entities meta class.Names of Entities meta class.FQN of Enum class.Value from a strict list of property options.Fetch plan name.Float type.Icon type.Integer type.JPA QL string.String value or message key with msg:// prefix.Long type.Arbitrary value represented by string with a list of possible options.Name of a data model property.Keyboard shortcut.Size value, e.g.Data store name.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
-
ACTION_REF
Identifier of an action defined in view. -
BIG_DECIMAL
Big decimal type. -
BOOLEAN
Boolean type. -
COMPONENT_ID
Identifier of a component. Must be a valid Java identifier. -
COMPONENT_REF
Identifier of a component defined in view. -
COLLECTION_DATA_CONTAINER_REF
ID of a collection data container. -
DATA_LOADER_REF
ID of a data loader. -
DATA_CONTAINER_REF
ID of a data container -
DATATYPE_ID
ID of a datatype. -
DOUBLE
Double type. -
ENTITY_NAME
Names of Entities meta class. -
ENTITY_NAMES
Names of Entities meta class. -
ENTITY_CLASS
FQN of Entity class. -
ENUM_CLASS
FQN of Enum class. -
ENUMERATION
Value from a strict list of property options. -
FETCH_PLAN
Fetch plan name. -
FLOAT
Float type. -
ICON
Icon type.- See Also:
-
VaadinIcon
-
INTEGER
Integer type. -
LOCALIZED_STRING
String value or message key with msg:// prefix. -
JPA_QUERY
JPA QL string. -
LONG
Long type. -
OPTIONS
Arbitrary value represented by string with a list of possible options. Similar toENUMERATION
, but allows text input. -
PROPERTY_REF
Name of a data model property. -
SIZE
Size value, e.g. width or height -
SHORTCUT_COMBINATION
Keyboard shortcut. -
STORE
Data store name. -
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
-