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

org.tinygroup.context.Context2Map Maven / Gradle / Ivy

There is a newer version: 3.4.9
Show newest version
/**
 * Copyright (c) 2012-2016, www.tinygroup.org ([email protected]).
 *
 *  Licensed under the GPL, Version 3.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.gnu.org/licenses/gpl.html
 *
 *  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.tinygroup.context;

import java.util.Collection;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;

/**
 * 把Context包装成Map
 *
 * @author luoguo
 */
public class Context2Map implements Map {
    private Context context = null;

    public Context2Map(Context context) {
        this.context = context;
    }

    public int size() {
        return notSupportMethod();
    }

    private int notSupportMethod() {
        throw getRuntimeException();
    }

    private RuntimeException getRuntimeException() {
        return new RuntimeException("This method is not supported.");
    }

    public boolean isEmpty() {
        throw getRuntimeException();
    }

    public boolean containsKey(Object key) {
        return context.get(key.toString()) != null;
    }

    public boolean containsValue(Object value) {
        throw getRuntimeException();
    }

    public Object get(Object key) {
        return context.get(key.toString());
    }

    public Object put(String key, Object value) {
        context.put(key, value);
        return value;
    }

    public Object remove(Object key) {
        throw getRuntimeException();
    }


    public void putAll(Map map) {
        Iterator> iterator = map.entrySet().iterator();
        while (iterator.hasNext()) {
            Entry entry = iterator.next();
            context.put(entry.getKey(), entry.getValue());
        }
    }

    public void clear() {
        throw getRuntimeException();
    }

    public Set keySet() {
        throw getRuntimeException();
    }

    public Collection values() {
        throw getRuntimeException();
    }

    public Set> entrySet() {
        throw getRuntimeException();
    }

}