All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.diirt.datasource.graphene.VStringArrayToListStringReadFunction Maven / Gradle / Ivy

There is a newer version: 3.1.7
Show newest version
/**
 * Copyright (C) 2010-14 diirt developers. See COPYRIGHT.TXT
 * All rights reserved. Use is subject to license terms. See LICENSE.TXT
 */
package org.diirt.datasource.graphene;

import java.util.List;
import org.diirt.datasource.ReadFunction;
import org.diirt.vtype.VStringArray;

/**
 *
 * @author carcassi
 */
public class VStringArrayToListStringReadFunction implements ReadFunction> {
    
    private final ReadFunction function;

    public VStringArrayToListStringReadFunction(ReadFunction function) {
        this.function = function;
    }

    @Override
    public List readValue() {
        VStringArray value = function.readValue();
        if (value == null) {
            return null;
        } else {
            return value.getData();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy