org.codehaus.httpcache4j.Directives Maven / Gradle / Ivy
/*
* Copyright (c) 2010. The Codehaus. All Rights Reserved.
*
* Licensed 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.codehaus.httpcache4j;
import com.google.common.base.Joiner;
import com.google.common.collect.ImmutableList;
import org.codehaus.httpcache4j.util.DirectivesParser;
import java.io.Serializable;
import java.util.*;
/**
* @author Erlend Hamnaberg
* @version $Revision: $
*/
public final class Directives implements Iterable, Serializable {
private final Map directives;
public Directives(Iterable directives) {
Map directivesMap = new LinkedHashMap();
for (Directive directive : directives) {
directivesMap.put(directive.getName(), directive);
}
this.directives = Collections.unmodifiableMap(directivesMap);
}
public Directives() {
directives = Collections.emptyMap();
}
public boolean hasDirective(String key) {
return directives.containsKey(key);
}
public String get(String key) {
Directive directive = directives.get(key);
if (directive == null) {
return "";
}
return directive.getValue();
}
public Directive getAsDirective(String key) {
return directives.get(key);
}
public int size() {
return directives.size();
}
/**
* @return a new Immutable iterator
*/
public Iterator iterator() {
return ImmutableList.copyOf(directives.values()).iterator();
}
@Override
public String toString() {
return Joiner.on(", ").join(directives.values());
}
public Directives add(Directive directive) {
ImmutableList.Builder dirs = ImmutableList.builder();
dirs.addAll(this);
dirs.add(directive);
return new Directives(dirs.build());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy