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

org.openfast.util.Cache Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package org.openfast.util;

import org.openfast.FieldValue;

public interface Cache {

    boolean containsValue(FieldValue value);

    int getIndex(FieldValue value);

    int store(FieldValue value);

    void store(int index, FieldValue value);

    FieldValue lookup(int index);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy