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

com.github.avinandi.urlparser.KeyValuePair Maven / Gradle / Ivy

Go to download

Url parser based on the provided template, e.g. /template/{variable}

There is a newer version: 1.2
Show newest version
package com.github.avinandi.urlparser;

import java.io.Serializable;

public class KeyValuePair implements Serializable {
    private final String key;
    private final Object value;

    KeyValuePair(String key, Object value) {
        this.key = key;
        this.value = value;
    }

    public String getKey() {
        return key;
    }

    public T getValue() {
        return (T) value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy