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

com.maxmind.db.DecodedValue Maven / Gradle / Ivy

package com.maxmind.db;

public final class DecodedValue {
    final Object value;

    DecodedValue(Object value) {
        this.value = value;
    }

    Object getValue() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy