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

com.hibegin.http.HttpVersion Maven / Gradle / Ivy

Go to download

Simple, flexible, less dependent, more extended. Less memory footprint, can quickly build Web project. Can quickly run embedded, Android devices

There is a newer version: 0.3.174
Show newest version
package com.hibegin.http;

public enum HttpVersion {

    HTTP_1_0("HTTP/1.0"),

    HTTP_1_1("HTTP/1.1");

    private final String value;

    HttpVersion(String value) {
        this.value = value;
    }

    public String getValue() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy