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

io.protostuff.runtime.FieldMap Maven / Gradle / Ivy

package io.protostuff.runtime;

import java.util.List;

/**
 * Interface for map of fields - defines how to you get field by name or number (tag).
 *
 * @author Kostiantyn Shchepanovskyi
 */
interface FieldMap
{

    Field getFieldByNumber(int n);

    Field getFieldByName(String fieldName);

    int getFieldCount();

    List> getFields();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy