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

net.dongliu.prettypb.runtime.include.ExtensionRange Maven / Gradle / Ivy

The newest version!
package net.dongliu.prettypb.runtime.include;

/**
 * for extension range
 *
 * @author Dong Liu
 */
public class ExtensionRange {
    private final int startTag;
    private final int endTag;

    public static final int maxTag = 536_870_911;

    public ExtensionRange(int startTag, int endTag) {
        this.startTag = startTag;
        this.endTag = endTag;
    }

    public int getStartTag() {
        return startTag;
    }

    public int getEndTag() {
        return endTag;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy