💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 组件源码 ``` /** * <b>方法描述:</b> set_list转换 <br/> * <b>创建者:</b> admin <br/> * <b>创建时间:</b> 2018-05-11 11:52:42 <br/> * * @param c * 入参|集合|{@link java.util.Collection} * @param c2 * 出参|转换结果|{@link java.util.Collection} * @return 0 失败<br/> * 1 成功<br/> */ @Component(label = "set_list转换", style = "判断型", type = "同步组件", comment = "支持set list集合类型互转", version = "1.0.0", deprecated = false, author = "admin", date = "2018-05-11 11:52:42") @InParams(param = { @Param(name = "c", comment = "集合", type = java.util.Collection.class) }) @OutParams(param = { @Param(name = "c2", comment = "转换结果", type = java.util.Collection.class) }) @Returns(returns = { @Return(id = "0", desp = "失败"), @Return(id = "1", desp = "成功") }) public static ResultBase P_change(Collection c) { if (c == null) return ResultBase.newFailureResult("TPTC1010", "待转换集合为空(Null)"); if (c instanceof Set) return ResultBase.newSuccessResult(new ArrayList<Object>(c)); if (c instanceof List) return ResultBase.newSuccessResult(new HashSet<Object>(c)); return ResultBase.newFailureResult("TPTC1011", "非Set/List类型集合列,不支持互转,类型="+c.getClass().getName()); } ``` # 交易中组件使用方式 ![](https://img.kancloud.cn/1e/08/1e089a8fa2e24be81119d82978cfaa50_1708x890.png) # 参数说明及示例 ## 入口参数 集合:传入 List 或者 Set,示例: `[1, 2, 3]` ## 出口参数 转换结果:根据传入的集合转换为对应的 List 或者 Set,示例: `__INNER__["set"]` > 注意:IDE 中集合和数组都以 [] 表示。