Class XItemUtil


  • public class XItemUtil
    extends Object
    • Field Detail

      • LOG

        protected static final org.slf4j.Logger LOG
    • Constructor Detail

      • XItemUtil

        public XItemUtil()
    • Method Detail

      • getXItem

        @Deprecated
        public static XItem getXItem​(com.alibaba.fastjson.JSONObject jsonObject,
                                     IXFormRenderConfig xRenderConfig,
                                     com.alibaba.fastjson.JSONObject version)
        Deprecated.
        The xRenderConfig is not needed. Use getXItem(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.
      • addItem

        public static void addItem​(XItem item,
                                   XForm form)
      • findPage

        public static XItem findPage​(Map<String,​XItem> items,
                                     XItem item)
        Parameters:
        items - Map between the ID of an item and the item itself.
        item - Item for which to get the page.
        Returns:
        The item representing the XPage which contains the given item.
      • fillXFormData

        public static void fillXFormData​(com.alibaba.fastjson.JSONObject persist,
                                         XForm form)
                                  throws com.alibaba.fastjson.JSONException
        Throws:
        com.alibaba.fastjson.JSONException
      • getItemsMap

        public static HashMap<String,​XItem> getItemsMap​(com.alibaba.fastjson.JSONObject persist)
                                                       throws com.alibaba.fastjson.JSONException
        Throws:
        com.alibaba.fastjson.JSONException
      • getItemsByIdMap

        public static Map<String,​XItem> getItemsByIdMap​(com.alibaba.fastjson.JSONObject persist)
                                                       throws com.alibaba.fastjson.JSONException
        Throws:
        com.alibaba.fastjson.JSONException
      • 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.