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

com.zuunr.json.JsonObjectInternalCache Maven / Gradle / Ivy

There is a newer version: 0.1.4
Show newest version
package com.zuunr.json;

import java.util.HashMap;

public class JsonObjectInternalCache implements KeyValuePairs {

    HashMap cachedValues;
    boolean isRecursiveCache = false;

    JsonArray keys;
    JsonArray values;

    @Override
    public JsonValue getKey(int index) {
        return keys.get(index);
    }

    @Override
    public JsonValue getValue(int index) {
        return values.get(index);
    }

    @Override
    public int getSize() {
        return keys.size();
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy