Example usage for com.google.common.net HttpHeaders TE

List of usage examples for com.google.common.net HttpHeaders TE

Introduction

In this page you can find the example usage for com.google.common.net HttpHeaders TE.

Prototype

String TE

To view the source code for com.google.common.net HttpHeaders TE.

Click Source Link

Document

The HTTP TE header field name.

Usage

From source file:org.apache.hadoop.hdfs.ByteRangeInputStream.java

private static boolean isChunkedTransferEncoding(final Map<String, List<String>> headers) {
    return contains(headers, HttpHeaders.TRANSFER_ENCODING, "chunked")
            || contains(headers, HttpHeaders.TE, "chunked");
}