if (!CollectionUtils.isEmpty(ordersList))
时间: 2024-05-30 15:08:21 浏览: 120
这是一段 Java 代码,判断 ordersList 是否不为空。如果 ordersList 不为空,则条件成立,代码块中的语句将被执行。如果 ordersList 为空,则条件不成立,代码块中的语句将被跳过。CollectionUtils 是一个 Apache Commons Lang 库中的工具类,用于操作集合类。
相关问题
!CollectionUtils.isEmpty(ordersList)
`!CollectionUtils.isEmpty(ordersList)`是一个条件判断语句,用于判断`ordersList`是否为空或者是否包含元素。如果`ordersList`不为空且包含元素,则条件为真,否则条件为假。
以下是一个示例代码,演示了如何使用`!CollectionUtils.isEmpty(ordersList)`进行条件判断:
```java
import org.apache.commons.collections4.CollectionUtils;
List<String> ordersList = new ArrayList<>();
ordersList.add("order1");
ordersList.add("order2");
if (!CollectionUtils.isEmpty(ordersList)) {
System.out.println("ordersList is not empty");
} else {
System.out.println("ordersList is empty");
}
```
上述代码中,我们首先导入了`org.apache.commons.collections4.CollectionUtils`类,该类提供了一些常用的集合操作方法。然后我们创建了一个`ordersList`列表,并向其中添加了两个元素。接下来,我们使用`!CollectionUtils.isEmpty(ordersList)`进行条件判断,如果`ordersList`不为空且包含元素,则输出"ordersList is not empty",否则输出"ordersList is empty"。
private List<ChannelTypeTenantVO> filterUseType(List<ChannelTypeTenantVO> channelTypes, List<String> filterList){ if(CollectionUtils.isEmpty(channelTypes) || CollectionUtils.isEmpty(filterList)) { return channelTypes; } return channelTypes.stream().filter(v -> { if(StringUtils.isEmpty(v.getUseCondition())) { return true; } ChannelTypeVO.UseConditionVO useConditionVO = JsonUtils.readValueQuietly(v.getUseCondition(), ChannelTypeVO.UseConditionVO.class); if(BooleanUtils.isNotTrue(useConditionVO.getUseTypeFlag())) { return true; } List<String> useTypeList = useConditionVO.getUseTypeList(); if(CollectionUtils.isNotEmpty(useTypeList) && !Collections.disjoint(useTypeList, filterList)) { return true; } return false; }).collect(Collectors.toList()); } private List<ChannelTypeVO> filterUseType1(List<ChannelTypeVO> channelTypes, List<String> filterList){ if(CollectionUtils.isEmpty(channelTypes) || CollectionUtils.isEmpty(filterList)) { return channelTypes; } return channelTypes.stream().filter(v -> { if(StringUtils.isEmpty(v.getUseCondition())) { return true; } ChannelTypeVO.UseConditionVO useConditionVO = JsonUtils.readValueQuietly(v.getUseCondition(), ChannelTypeVO.UseConditionVO.class); if(BooleanUtils.isNotTrue(useConditionVO.getUseTypeFlag())) { return true; } List<String> useTypeList = useConditionVO.getUseTypeList(); if(CollectionUtils.isNotEmpty(useTypeList) && !Collections.disjoint(useTypeList, filterList)) { return true; } return false; }).collect(Collectors.toList()); }
这段代码是两个方法,它们的方法名和实现相同,只是所处理的数据类型不同。第一个方法是 `filterUseType`,它接受一个 `List<ChannelTypeTenantVO>` 类型的参数 `channelTypes` 和一个 `List<String>` 类型的参数 `filterList`,返回一个经过过滤后的 `List<ChannelTypeTenantVO>` 类型的列表。第二个方法是 `filterUseType1`,它接受一个 `List<ChannelTypeVO>` 类型的参数 `channelTypes` 和一个 `List<String>` 类型的参数 `filterList`,返回一个经过过滤后的 `List<ChannelTypeVO>` 类型的列表。这样的重复代码是不必要的,可以将它们合并为一个方法,使用泛型来处理不同类型的数据。
可以将这两个方法合并为一个泛型方法,它接受一个 `List<T>` 类型的参数 `channelTypes`,一个 `List<String>` 类型的参数 `filterList`,以及一个 `Class<T>` 类型的参数 `clazz`,用于指定 `channelTypes` 中元素的类型。其中的逻辑实现和原来的方法是相同的。例如:
```
private <T> List<T> filterUseType(List<T> channelTypes, List<String> filterList, Class<T> clazz) {
if(CollectionUtils.isEmpty(channelTypes) || CollectionUtils.isEmpty(filterList)) {
return channelTypes;
}
return channelTypes.stream().filter(v -> {
if(StringUtils.isEmpty(v.getUseCondition())) {
return true;
}
ChannelTypeVO.UseConditionVO useConditionVO = JsonUtils.readValueQuietly(v.getUseCondition(), ChannelTypeVO.UseConditionVO.class);
if(BooleanUtils.isNotTrue(useConditionVO.getUseTypeFlag())) {
return true;
}
List<String> useTypeList = useConditionVO.getUseTypeList();
if(CollectionUtils.isNotEmpty(useTypeList) && !Collections.disjoint(useTypeList, filterList)) {
return true;
}
return false;
}).map(clazz::cast).collect(Collectors.toList());
}
```
这样,你就可以在调用方法时传入不同类型的数据,而不需要重复编写相似的代码。例如,你可以这样调用该方法:
```
List<ChannelTypeTenantVO> channelTypes = ...;
List<String> filterList = ...;
List<ChannelTypeTenantVO> result1 = filterUseType(channelTypes, filterList, ChannelTypeTenantVO.class);
List<ChannelTypeVO> channelTypes2 = ...;
List<String> filterList2 = ...;
List<ChannelTypeVO> result2 = filterUseType(channelTypes2, filterList2, ChannelTypeVO.class);
```
阅读全文