当前位置: 首页>>代码示例>>Java>>正文


Java ListUtils.EMPTY_LIST属性代码示例

本文整理汇总了Java中org.apache.commons.collections.ListUtils.EMPTY_LIST属性的典型用法代码示例。如果您正苦于以下问题:Java ListUtils.EMPTY_LIST属性的具体用法?Java ListUtils.EMPTY_LIST怎么用?Java ListUtils.EMPTY_LIST使用的例子?那么, 这里精选的属性代码示例或许可以为您提供帮助。您也可以进一步了解该属性所在org.apache.commons.collections.ListUtils的用法示例。


在下文中一共展示了ListUtils.EMPTY_LIST属性的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getAcceptedDataTypes

/** 
 * The accepted data types of a group item is the same as of the underlying base item.
 * If none is defined, the intersection of all sets of accepted data types of all group
 * members is used instead.
 * 
 * @return the accepted data types of this group item
 */
@SuppressWarnings("unchecked")
public List<Class<? extends State>> getAcceptedDataTypes() {
	if(baseItem!=null) {
		return baseItem.getAcceptedDataTypes();
	} else {
		List<Class<? extends State>> acceptedDataTypes = null;
		
		for(Item item : members) {
			if(acceptedDataTypes==null) {
				acceptedDataTypes = item.getAcceptedDataTypes();
			} else {
				acceptedDataTypes = ListUtils.intersection(acceptedDataTypes, item.getAcceptedDataTypes());
			}
		}
		return acceptedDataTypes == null ? ListUtils.EMPTY_LIST : acceptedDataTypes;
	}
}
 
开发者ID:Neulinet,项目名称:Zoo,代码行数:24,代码来源:GroupItem.java

示例2: getAcceptedCommandTypes

/** 
 * The accepted command types of a group item is the same as of the underlying base item.
 * If none is defined, the intersection of all sets of accepted command types of all group
 * members is used instead.
 * 
 * @return the accepted command types of this group item
 */
@SuppressWarnings("unchecked")
public List<Class<? extends Command>> getAcceptedCommandTypes() {
	if(baseItem!=null) {
		return baseItem.getAcceptedCommandTypes();
	} else {
		List<Class<? extends Command>> acceptedCommandTypes = null;
		
		for(Item item : members) {
			if(acceptedCommandTypes==null) {
				acceptedCommandTypes = item.getAcceptedCommandTypes();
			} else {
				acceptedCommandTypes = ListUtils.intersection(acceptedCommandTypes, item.getAcceptedCommandTypes());
			}
		}
		return acceptedCommandTypes == null ? ListUtils.EMPTY_LIST : acceptedCommandTypes;
	}
}
 
开发者ID:Neulinet,项目名称:Zoo,代码行数:24,代码来源:GroupItem.java

示例3: getUsers

@SuppressWarnings("unchecked")
public List<IUser> getUsers() {
	if(users==null){
		return ListUtils.EMPTY_LIST;
	}
	return users;
}
 
开发者ID:bsteker,项目名称:bdf2,代码行数:7,代码来源:Group.java

示例4: getDepts

@SuppressWarnings("unchecked")
public List<IDept> getDepts() {
	if(depts==null){
		return ListUtils.EMPTY_LIST;
	}
	return depts;
}
 
开发者ID:bsteker,项目名称:bdf2,代码行数:7,代码来源:Group.java

示例5: getPositions

@SuppressWarnings("unchecked")
public List<IPosition> getPositions() {
	if(positions==null){
		return ListUtils.EMPTY_LIST;
	}
	return positions;
}
 
开发者ID:bsteker,项目名称:bdf2,代码行数:7,代码来源:Group.java

示例6: getConceptMappingsToThisTerm

@SuppressWarnings("unchecked")
@ModelAttribute("referenceTermMappingsToThisTerm")
public List<ConceptReferenceTermMap> getConceptMappingsToThisTerm(@ModelAttribute ConceptReferenceTerm conceptReferenceTerm) {
	if (conceptReferenceTerm.getConceptReferenceTermId() != null) {
		return Context.getConceptService().getReferenceTermMappingsTo(conceptReferenceTerm);
	}
	
	return ListUtils.EMPTY_LIST;
}
 
开发者ID:openmrs,项目名称:openmrs-module-legacyui,代码行数:9,代码来源:ConceptReferenceTermFormController.java

示例7: return_empty_list_apache_commons

@Test
public void return_empty_list_apache_commons () {
	
	@SuppressWarnings("unchecked")
	List<String> emptyList = ListUtils.EMPTY_LIST;
	
	assertTrue(emptyList.isEmpty());
}
 
开发者ID:wq19880601,项目名称:java-util-examples,代码行数:8,代码来源:ReturnEmptyList.java

示例8: return_empty_list_apache_commons_exception

/**
 * Used for post example
 */
@SuppressWarnings({"unchecked", "unused" })
private void return_empty_list_apache_commons_exception () {

	DomainObject domain = null; // dao populate domain

	List<String> strings;
	if (domain != null && !CollectionUtils.isEmpty(domain.getStrings())) {
		strings = domain.getStrings();
	} else {
		strings = ListUtils.EMPTY_LIST;
	}

	//...
}
 
开发者ID:wq19880601,项目名称:java-util-examples,代码行数:17,代码来源:ReturnEmptyList.java

示例9: onboardNextPayloads

private List<Payload> onboardNextPayloads(Workspace workspace, PayloadGroup payloadGroup) throws PersistenceException {
    if (payloadGroup == null) {
        return ListUtils.EMPTY_LIST;
    }

    List<Payload> payloads = payloadGroup.getPayloads();
    if (payloads.size() > 0) {
        workspace.addActivePayloads(payloads);
    }

    return payloads;
}
 
开发者ID:Adobe-Consulting-Services,项目名称:acs-aem-commons,代码行数:12,代码来源:SyntheticWorkflowRunnerImpl.java


注:本文中的org.apache.commons.collections.ListUtils.EMPTY_LIST属性示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。