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;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy