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

it.tidalwave.util.impl.finder.MappingFinder Maven / Gradle / Ivy

There is a newer version: 3.2-ALPHA-23
Show newest version
/*
 * *********************************************************************************************************************
 *
 * TheseFoolishThings: Miscellaneous utilities
 * http://tidalwave.it/projects/thesefoolishthings
 *
 * Copyright (C) 2009 - 2023 by Tidalwave s.a.s. (http://tidalwave.it)
 *
 * *********************************************************************************************************************
 *
 * 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.
 *
 * *********************************************************************************************************************
 *
 * git clone https://bitbucket.org/tidalwave/thesefoolishthings-src
 * git clone https://github.com/tidalwave-it/thesefoolishthings-src
 *
 * *********************************************************************************************************************
 */
package it.tidalwave.util.impl.finder;

import javax.annotation.Nonnull;
import javax.annotation.concurrent.Immutable;
import java.util.List;
import java.util.function.Function;
import it.tidalwave.util.Finder;
import it.tidalwave.util.spi.SimpleFinderSupport;
import static java.util.stream.Collectors.*;

/***********************************************************************************************************************
 *
 * A {@link Finder} which retrieve results from another instance applying a {@link Function}.
 *
 * @author  Fabrizio Giudici
 *
 **********************************************************************************************************************/
@Immutable
public final class MappingFinder extends SimpleFinderSupport
  {
    private static final long serialVersionUID = -6359683808082070089L;

    @Nonnull
    private final transient Finder delegate;

    @Nonnull
    private final transient Function decorator;

    public MappingFinder (@Nonnull final Finder delegate,
                          @Nonnull final Function decorator)
      {
        this.delegate = delegate;
        this.decorator = decorator;
      }

    public MappingFinder (@Nonnull final MappingFinder other, @Nonnull final Object override)
      {
        super(other, override);
        final MappingFinder source = getSource(MappingFinder.class, other, override);
        this.delegate = source.delegate;
        this.decorator = source.decorator;
      }

    @Override @Nonnull
    protected List computeResults()
      {
        return delegate.results().stream().map(decorator).collect(toList());
      }
  }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy