當前位置: 首頁>>代碼示例>>Java>>正文


Java MultiValueMap.entrySet方法代碼示例

本文整理匯總了Java中org.springframework.util.MultiValueMap.entrySet方法的典型用法代碼示例。如果您正苦於以下問題:Java MultiValueMap.entrySet方法的具體用法?Java MultiValueMap.entrySet怎麽用?Java MultiValueMap.entrySet使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.springframework.util.MultiValueMap的用法示例。


在下文中一共展示了MultiValueMap.entrySet方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: findConnectionsToUsers

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
@Override
public MultiValueMap<String, Connection<?>> findConnectionsToUsers(
                MultiValueMap<String, String> providerUserIdsByProviderId) {
    if (providerUserIdsByProviderId == null || providerUserIdsByProviderId.isEmpty()) {
        throw new IllegalArgumentException("Unable to execute find: no providerUsers provided");
    }

    MultiValueMap<String, Connection<?>> connectionsForUsers = new LinkedMultiValueMap<>();
    for (Map.Entry<String, List<String>> entry : providerUserIdsByProviderId.entrySet()) {
        String providerId = entry.getKey();
        List<String> providerUserIds = entry.getValue();
        List<Connection<?>> connections = providerUserIdsToConnections(providerId, providerUserIds);
        connections.forEach(connection -> connectionsForUsers.add(providerId, connection));
    }
    return connectionsForUsers;
}
 
開發者ID:xm-online,項目名稱:xm-uaa,代碼行數:17,代碼來源:CustomSocialConnectionRepository.java

示例2: getBackends

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
private Map<String, String> getBackends(MultiValueMap<String, String> queryParams,
		Pattern pattern) {

	Map<String, String> backends = new HashMap<String, String>();

	for (Entry<String, List<String>> entry : queryParams.entrySet()) {

		Matcher matcher = pattern.matcher(entry.getKey());
		if (!matcher.find()) {
			continue;
		}

		backends.put(matcher.group(1), queryParams.getFirst(entry.getKey()));
	}

	return backends;
}
 
開發者ID:pivotal-cf,項目名稱:spring-cloud-vault-connector,代碼行數:18,代碼來源:VaultServiceInfoCreator.java

示例3: build

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
public Record build(Record record,
        MultiValueMap<String, String> multiValueMap, String tenantId)
        throws Exception {
    for (Map.Entry<String, List<String>> entry : multiValueMap.entrySet()) {
        String key = entry.getKey();

        if (key == null) {
            continue;
        }

        List<String> value = entry.getValue();

        if ((value == null) || (value.isEmpty())) {
            continue;
        }

        Prop prop = new Prop();
        prop.setCode(key);
        prop.setType(0);
        prop.setValue(this.getValue(value));
        record.getProps().put(prop.getCode(), prop);
    }

    return record;
}
 
開發者ID:zhaojunfei,項目名稱:lemon,代碼行數:26,代碼來源:RecordBuilder.java

示例4: isMultipart

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
private static boolean isMultipart(MultiValueMap<String, ?> map, MediaType contentType) {
    if (contentType != null) {
        return MediaType.MULTIPART_FORM_DATA.equals(contentType);
    }
    for (Entry<String, ?> entry : map.entrySet()) {
        if (entry.getValue() != null && !(entry.getValue() instanceof String)) {
            return true;
        }
    }
    return false;
}
 
開發者ID:xm-online,項目名稱:xm-uaa,代碼行數:12,代碼來源:TwitterEscapingFormHttpMessageConverter.java

示例5: findConnectionsToUsers

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
@Override
public MultiValueMap<String, Connection<?>> findConnectionsToUsers(MultiValueMap<String, String> providerUserIdsByProviderId) {
    if (providerUserIdsByProviderId == null || providerUserIdsByProviderId.isEmpty()) {
        throw new IllegalArgumentException("Unable to execute find: no providerUsers provided");
    }

    MultiValueMap<String, Connection<?>> connectionsForUsers = new LinkedMultiValueMap<>();
    for (Map.Entry<String, List<String>> entry : providerUserIdsByProviderId.entrySet()) {
        String providerId = entry.getKey();
        List<String> providerUserIds = entry.getValue();
        List<Connection<?>> connections = providerUserIdsToConnections(providerId, providerUserIds);
        connections.forEach(connection -> connectionsForUsers.add(providerId, connection));
    }
    return connectionsForUsers;
}
 
開發者ID:Microsoft,項目名稱:MTC_Labrat,代碼行數:16,代碼來源:CustomSocialConnectionRepository.java

示例6: isMultipart

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
private boolean isMultipart(MultiValueMap<String, ?> map, MediaType contentType) {
    if (contentType != null) {
        return MediaType.MULTIPART_FORM_DATA.includes(contentType)
            || mixed.includes(contentType)
            || related.includes(contentType);
    }
    for (Map.Entry<String, ?> entiry : map.entrySet()) {
        for (Object value : map.get(entiry.getKey())) {
            if (value != null && !(value instanceof String)) {
                return true;
            }
        }
    }
    return false;
}
 
開發者ID:xm-online,項目名稱:xm-ms-entity,代碼行數:16,代碼來源:MultipartMixedConverter.java

示例7: writeParts

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
private void writeParts(OutputStream os, MultiValueMap<String, Object> parts, byte[] boundary) throws IOException {
    for (Map.Entry<String, List<Object>> entry : parts.entrySet()) {
        String name = entry.getKey();
        for (Object part : entry.getValue()) {
            if (part != null) {
                writeBoundary(os, boundary);
                writePart(name, getHttpEntity(part), os);
                writeNewLine(os);
            }
        }
    }
}
 
開發者ID:xm-online,項目名稱:xm-ms-entity,代碼行數:13,代碼來源:MultipartMixedConverter.java

示例8: writeParts

import org.springframework.util.MultiValueMap; //導入方法依賴的package包/類
private void writeParts(OutputStream os, MultiValueMap<String, Object> parts, byte[] boundary) throws IOException {
	for (Map.Entry<String, List<Object>> entry : parts.entrySet()) {
		String name = entry.getKey();
		for (Object part : entry.getValue()) {
			if (part != null) {
				writeBoundary(boundary, os);
				HttpEntity<?> entity = getEntity(part);
				writePart(name, entity, os);
				writeNewLine(os);
			}
		}
	}
}
 
開發者ID:lamsfoundation,項目名稱:lams,代碼行數:14,代碼來源:FormHttpMessageConverter.java


注:本文中的org.springframework.util.MultiValueMap.entrySet方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。