Annotation Interface IntPropertyEdit
Integer property configurable in Appfigurate using a text field. See
Java int editable implementation
-
Required Element Summary
Required ElementsModifier and TypeRequired ElementDescriptionString that describes the purpose of the property, to appear in Appfigurate's Configure app screen.int
Maximum value for the int property in range of -2,147,483,648..2,147,483,647.int
Minimum value for the int property in a range of -2,147,483,648..2,147,483,647 -
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionOptional regular expression validating the input.boolean
If the property value changes, the app can be optionally restarted.
-
Element Details
-
description
String descriptionString that describes the purpose of the property, to appear in Appfigurate's Configure app screen.- Returns:
- string describing purpose of the property.
-
minValue
int minValueMinimum value for the int property in a range of -2,147,483,648..2,147,483,647- Returns:
- int value.
-
maxValue
int maxValueMaximum value for the int property in range of -2,147,483,648..2,147,483,647. Must be greater than the minValue.- Returns:
- int value.
-
regularExpression
String regularExpressionOptional regular expression validating the input.- Returns:
- regular expression or "" for no regular expression.
- Default:
""
-
restart
boolean restartIf the property value changes, the app can be optionally restarted.- Returns:
- true if the app should be restarted.
- Default:
false
-