Class XItemUtil
java.lang.Object
de.xima.fc.form.common.XItemUtil
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic voidstatic voidfillXFormData(com.alibaba.fastjson.JSONObject persist, XForm form) static XItemfindItemByName(IXForm xForm, String formFieldName) Finds the item with the given name in the form.static XItemstatic XItemfindRepetitionContainer(XItem item, IXForm xForm) Finds the closest parent item that is a repetition container for the given item.getAcceptedFileExtensions(XItem xItem) static Set<Class<? extends IXItemBasic>> Gets an (immutable) set of all builtinform item typesprovided by the formcycle core.static IXItemBasicgetItemHandler(String className, Map<String, Class<? extends IXItemBasic>> xitems, Map<String, XItemWidgetWrapper> widgets) getItemsByClasses(com.alibaba.fastjson.JSONObject persist, IFD2XItemProvider provider, Class<?>... classes) Finds form items by their class name.getItemsByClasses(com.alibaba.fastjson.JSONObject persist, Map<String, Class<? extends IXItemBasic>> xItems, Map<String, XItemWidgetWrapper> widgets, Class<?>... classes) Finds form items by their class name.getItemsByClassName(com.alibaba.fastjson.JSONObject persist, String... classNames) Finds form items by their class name.getItemsByIdMap(com.alibaba.fastjson.JSONObject persist) getItemsMap(com.alibaba.fastjson.JSONObject persist) static Class<? extends IXItemBasic> getItemTypeClass(XItem item, IFD2XItemProvider provider) static Class<? extends IXItemBasic> getItemTypeClass(String className, Map<String, Class<? extends IXItemBasic>> xitems, Map<String, XItemWidgetWrapper> widgets) static StringReturns the label of the given item in the given locale.static LonggetMaxFileSize(XItem xItem) Returns the maximum file size for the given item.static intgetMaxRepetitions(XItem xItem) Returns the maximum number of repetitions for the given item.static intgetMinRepetitions(XItem xItem) Returns the minimum number of repetitions for the given item.static XItemgetXItem(com.alibaba.fastjson.JSONObject jsonObject, com.alibaba.fastjson.JSONObject version) static XItemgetXItem(com.alibaba.fastjson.JSONObject jsonObject, IXFormRenderConfig xRenderConfig) Deprecated.static XItemgetXItem(com.alibaba.fastjson.JSONObject jsonObject, IXFormRenderConfig xRenderConfig, com.alibaba.fastjson.JSONObject version) Deprecated.ThexRenderConfigis not needed.
-
Constructor Details
-
XItemUtil
public XItemUtil()
-
-
Method Details
-
addItem
-
fillXFormData
public static void fillXFormData(com.alibaba.fastjson.JSONObject persist, XForm form) throws com.alibaba.fastjson.JSONException - Throws:
com.alibaba.fastjson.JSONException
-
findItemByName
-
findPage
-
findRepetitionContainer
Finds the closest parent item that is a repetition container for the given item.- Parameters:
item- Item for which to find the closest repetition container.xForm- Form in which the item is located.- Returns:
- The closest parent item that is a repetition container for the given item.
-
getAcceptedFileExtensions
-
getBuiltinItemTypes
Gets an (immutable) set of all builtinform item typesprovided by the formcycle core. This does not include items provided by widget plugins.- Returns:
- All builtin item types.
- Since:
- 8.1.0
-
getItemHandler
public static IXItemBasic getItemHandler(String className, Map<String, Class<? extends IXItemBasic>> xitems, Map<String, XItemWidgetWrapper> widgets) - Parameters:
className- (Simple) class name of the item type.xitems- Map with all available built-in item types.widgets- Map with all available plugin item types.- Returns:
- An instantiated handler for the given item type.
-
getItemTypeClass
public static Class<? extends IXItemBasic> getItemTypeClass(String className, Map<String, Class<? extends IXItemBasic>> xitems, Map<String, XItemWidgetWrapper> widgets) - Parameters:
className- (Simple) class name of the item type.xitems- Map with all available built-in item types.widgets- Map with all available plugin item types.- Returns:
- The class for the given item type.
-
getItemTypeClass
- Parameters:
item- An item for which to find its handler class.provider- Item provider with the known item classes.- Returns:
- The handler class for the given item.
-
getItemsByClassName
public static Map<String, List<XItem>> getItemsByClassName(com.alibaba.fastjson.JSONObject persist, String... classNames) throws com.alibaba.fastjson.JSONException Finds form items by their class name. Only parses those items that match the given class names.- Parameters:
persist- Persist JSON of the form.classNames- All form item class names that should be returned. When null or empty, all types are returned.- Returns:
- A map between the item type (class name) and all form items of that type.
- Throws:
com.alibaba.fastjson.JSONException- When the persist is invalid.
-
getItemsByClasses
public static Map<String, List<XItem>> getItemsByClasses(com.alibaba.fastjson.JSONObject persist, IFD2XItemProvider provider, Class<?>... classes) throws com.alibaba.fastjson.JSONException Finds form items by their class name. Only parses those items that match the given class names.- Parameters:
persist- Persist JSON of the form.provider- Item provider with the known item classes.classes- List of form item classes to return, can be a super class or super interface. When null or empty, all types are returned.- Returns:
- A map between the item type (class name) and all form items of that type.
- Throws:
com.alibaba.fastjson.JSONException- When the persist is invalid.
-
getItemsByClasses
public static Map<String, List<XItem>> getItemsByClasses(com.alibaba.fastjson.JSONObject persist, Map<String, Class<? extends IXItemBasic>> xItems, Map<String, XItemWidgetWrapper> widgets, Class<?>... classes) throws com.alibaba.fastjson.JSONException Finds form items by their class name. Only parses those items that match the given class names.- Parameters:
persist- Persist JSON of the form.xItems- Map with all available built-in item types.widgets- Map with all available plugin item types.classes- List of form item classes to return, can be a super class or super interface. When null or empty, all types are returned.- Returns:
- A map between the item type (class name) and all form items of that type.
- Throws:
com.alibaba.fastjson.JSONException- When the persist is invalid.
-
getItemsByIdMap
-
getItemsMap
-
getLabel
-
getMaxFileSize
Returns the maximum file size for the given item. If no maximum file size is set, null is returned, indicating that there is no maximum file size.- Parameters:
xItem- Item for which to get the maximum file size.- Returns:
- The maximum file size for the given item or null if no maximum file size is set.
-
getMaxRepetitions
Returns the maximum number of repetitions for the given item.- Parameters:
xItem- Item for which to get the maximum number of repetitions.- Returns:
- The maximum number of repetitions for the given item.
-
getMinRepetitions
Returns the minimum number of repetitions for the given item.- Parameters:
xItem- Item for which to get the minimum number of repetitions.- Returns:
- The minimum number of repetitions for the given item.
-
getXItem
@Deprecated public static XItem getXItem(com.alibaba.fastjson.JSONObject jsonObject, IXFormRenderConfig xRenderConfig) Deprecated.- Parameters:
jsonObject- JSON object with the properties of the item.xRenderConfig- Current render configuration of the form.- Returns:
- The item descriptor for the given parameters.
-
getXItem
@Deprecated public static XItem getXItem(com.alibaba.fastjson.JSONObject jsonObject, IXFormRenderConfig xRenderConfig, com.alibaba.fastjson.JSONObject version) Deprecated.ThexRenderConfigis not needed. UsegetXItem(JSONObject, JSONObject).- Parameters:
jsonObject- JSON object with the properties of the item.xRenderConfig- Current render configuration of the form.version- Version of the form.- Returns:
- The item descriptor for the given parameters.
-
getXItem
public static XItem getXItem(com.alibaba.fastjson.JSONObject jsonObject, com.alibaba.fastjson.JSONObject version) - Parameters:
jsonObject- JSON object with the properties of the item.version- Version of the form.- Returns:
- The item descriptor for the given parameters.
-
getXItem(JSONObject, IXFormRenderConfig, JSONObject).