/* * Copyright 2017 the original author or authors. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springframework.cassandra.core.converter; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.stream.Collectors; import org.springframework.core.convert.converter.Converter; import org.springframework.util.StringUtils; import com.datastax.driver.core.ResultSet; /** * {@link Converter} from {@link ResultSet} to a {@link List} of {@link String}. * * @author Mark Paluch */ public class ResultSetToListOfStringConverter extends AbstractResultSetConverter<List<String>> { public static final ResultSetToListOfStringConverter INSTANCE = new ResultSetToListOfStringConverter(); /* (non-Javadoc) * @see org.springframework.cassandra.core.converter.AbstractResultSetConverter#doConvertSingleValue(java.lang.Object) */ @Override protected List<String> doConvertSingleValue(Object object) { List<String> list = new ArrayList<>(); list.add(object == null ? null : object.toString()); return list; } /* (non-Javadoc) * @see org.springframework.cassandra.core.converter.AbstractResultSetConverter#doConvertSingleRow(java.util.Map) */ @Override protected List<String> doConvertSingleRow(Map<String, Object> row) { return row.values().stream().map(value -> value == null ? null : value.toString()).collect(Collectors.toList()); } @Override protected List<String> doConvertResultSet(List<Map<String, Object>> resultSet) { return resultSet.stream().map(row -> doConvertSingleRow(row).toArray()) // .map(StringUtils::arrayToCommaDelimitedString) // .collect(Collectors.toList()); } @Override protected Class<?> getType() { return List.class; } }