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

org.apache.juneau.http.HeaderRangeArray Maven / Gradle / Ivy

There is a newer version: 9.0.1
Show newest version
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements.  See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership.  The ASF licenses this file        *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance            *
// * with the License.  You may obtain a copy of the License at                                                              *
// *                                                                                                                         *
// *  http://www.apache.org/licenses/LICENSE-2.0                                                                             *
// *                                                                                                                         *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an  *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the        *
// * specific language governing permissions and limitations under the License.                                              *
// ***************************************************************************************************************************
package org.apache.juneau.http;

import java.util.*;

import org.apache.juneau.internal.*;

/**
 * Category of headers that consist of simple comma-delimited lists of strings with q-values.
 *
 * 

*

Example
*

* Accept-Encoding: compress;q=0.5, gzip;q=1.0 *

* *
Additional Information
* */ public class HeaderRangeArray { final StringRange[] typeRanges; private final List typeRangesList; /** * Constructor. * * @param value The raw header value. */ protected HeaderRangeArray(String value) { this.typeRanges = StringRange.parse(value); this.typeRangesList = Collections.unmodifiableList(Arrays.asList(typeRanges)); } /** * Given a list of type values, returns the best match for this header. * * @param types The types to match against. * @return The index into the array of the best match, or -1 if no suitable matches could be found. */ public int findMatch(String[] types) { // Type ranges are ordered by 'q'. // So we only need to search until we've found a match. for (StringRange mr : typeRanges) for (int i = 0; i < types.length; i++) if (mr.matches(types[i])) return i; return -1; } /** * Returns the list of the types ranges that make up this header. * *

* The types ranges in the list are sorted by their q-value in descending order. * * @return An unmodifiable list of type ranges. */ public List asSimpleRanges() { return typeRangesList; } @Override /* Object */ public String toString() { return StringUtils.join(typeRanges, ','); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy