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

com.izforge.izpack.matcher.DuplicateMatcher Maven / Gradle / Ivy

There is a newer version: 5.2.3
Show newest version
package com.izforge.izpack.matcher;

import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import org.hamcrest.core.Is;

/**
 * List matcher for double item detection
 *
 * @author Anthonin Bonnefoy
 */
public class DuplicateMatcher extends TypeSafeMatcher>
{
    public Matcher itemMatcher;

    public DuplicateMatcher(Matcher itemMatcher)
    {
        this.itemMatcher = itemMatcher;
    }

    @Override
    public boolean matchesSafely(Iterable strings)
    {
        boolean alreadyFound = false;
        for (String string : strings)
        {
            if (itemMatcher.matches(string))
            {
                if (alreadyFound)
                {
                    return false;
                }
                alreadyFound = true;
            }
        }
        return alreadyFound;
    }

    public void describeTo(Description description)
    {
        description.appendText("List containing a unique entity ").appendValue(itemMatcher);
    }

    public static DuplicateMatcher isEntryUnique(String entry)
    {
        return new DuplicateMatcher(Is.is(entry));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy