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

com.jparams.store.query.IndexMatch Maven / Gradle / Ivy

There is a newer version: 3.1.4
Show newest version
package com.jparams.store.query;

public class IndexMatch
{
    private final String indexName;
    private final Object key;

    IndexMatch(final String indexName, final Object key)
    {
        this.indexName = indexName;
        this.key = key;
    }

    public String getIndexName()
    {
        return indexName;
    }

    public Object getKey()
    {
        return key;
    }

    @Override
    public String toString()
    {
        return "IndexMatch{"
            + "indexName='" + indexName + '\''
            + ", key=" + key
            + '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy