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

org.simpleflatmapper.reflect.getter.IndexedListGetter Maven / Gradle / Ivy

package org.simpleflatmapper.reflect.getter;

import org.simpleflatmapper.reflect.Getter;

import java.util.List;

public class IndexedListGetter implements Getter, E> {
    private final int index;

    public IndexedListGetter(int index) {
        this.index = index;
    }

    @Override
    public E get(List target) throws Exception {
        if (index < target.size()) {
            return target.get(index);
        }
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy