/* See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * Esri Inc. 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 com.esri.gpt.server.csw.provider.components; import com.esri.gpt.framework.collection.CaseInsensitiveMap; import com.esri.gpt.framework.util.Val; import java.util.StringTokenizer; /** * Holds a set of supported values associated with a request parameter. */ public class SupportedValues implements ISupportedValues { /** instance variables ====================================================== */ private CaseInsensitiveMap<String> supported = new CaseInsensitiveMap<String>(false); /** constructors ============================================================ */ /** Default constructor */ public SupportedValues() {} /** * Constructs the set of supported values from a delimited string. * @param tokens the delimited string to tokenize * @param delimiter the delimiter */ public SupportedValues(String tokens, String delimiter) { tokens = Val.chkStr(tokens); if (delimiter == null) { this.supported.put(tokens,tokens); } else { StringTokenizer st = new StringTokenizer(tokens,delimiter); while (st.hasMoreElements()) { String token = Val.chkStr((String)st.nextElement()); this.supported.put(token,token); } } } /** methods ================================================================= */ /** * Gets the supported value associated with a requested value. * @param requestedValue the requested value * @return the supported value (null if unsupported) */ public String getSupportedValue(String requestedValue) { return this.supported.get(requestedValue); } /** * Determines if a requested value is supported. * @param requestedValue the requested value * @return <code>true</code> if the value is supported */ public boolean isValueSupported(String requestedValue) { return this.supported.containsKey(requestedValue); } }