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

com.harium.suneidesis.linguistic.matcher.Eq Maven / Gradle / Ivy

The newest version!
package com.harium.suneidesis.linguistic.matcher;

public class Eq implements Matcher {

    private String word;

    public Eq(String word) {
        this.word = word;
    }

    @Override
    public boolean matches(String[] tokens) {
        for (String token : tokens) {
            if (token.equals(word)) {
                return true;
            }
        }
        return false;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy