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

com.fireflysource.net.http.common.model.HttpHeaderValue Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.net.http.common.model;

import com.fireflysource.common.collection.trie.ArrayTrie;
import com.fireflysource.common.collection.trie.Trie;
import com.fireflysource.common.string.StringUtils;

import java.util.EnumSet;

/**
 *
 */
public enum HttpHeaderValue {

    CLOSE("close"),
    CHUNKED("chunked"),
    GZIP("gzip"),
    COMPRESS("compress"),
    DEFLATE("deflate"),
    BR("br"),
    IDENTITY("identity"),
    KEEP_ALIVE("keep-alive"),
    CONTINUE("100-continue"),
    PROCESSING("102-processing"),
    TE("TE"),
    BYTES("bytes"),
    NO_CACHE("no-cache"),
    UPGRADE("Upgrade"),
    UNKNOWN("::UNKNOWN::");

    public final static Trie CACHE = new ArrayTrie<>();
    private static final EnumSet __known = EnumSet.of(
            HttpHeader.CONNECTION,
            HttpHeader.TRANSFER_ENCODING,
            HttpHeader.CONTENT_ENCODING);

    static {
        for (HttpHeaderValue value : HttpHeaderValue.values())
            if (value != UNKNOWN)
                CACHE.put(value.toString(), value);
    }

    private final String value;
    private final byte[] bytes;

    HttpHeaderValue(String value) {
        this.value = value;
        bytes = StringUtils.getUtf8Bytes(value);
    }

    public static boolean hasKnownValues(HttpHeader header) {
        if (header == null)
            return false;
        return __known.contains(header);
    }

    public boolean is(String value) {
        return this.value.equalsIgnoreCase(value);
    }

    public String getValue() {
        return value;
    }

    public byte[] getBytes() {
        return bytes;
    }

    @Override
    public String toString() {
        return value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy