本文整理汇总了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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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;
}
示例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);
}
}
}
}
示例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);
}
}
}
}