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

io.github.amayaframework.options.EmptyOptionSet Maven / Gradle / Ivy

The newest version!
package io.github.amayaframework.options;

import com.github.romanqed.jfunc.Runnable1;
import com.github.romanqed.jfunc.Runnable2;

import java.util.Collections;
import java.util.Map;
import java.util.Set;

/**
 * Unmodifiable implementation of {@link OptionSet} that contains no values.
 */
public final class EmptyOptionSet implements OptionSet {

    @Override
    public  T get(String key) {
        return null;
    }

    @Override
    public Object set(String key, Object value) {
        throw new UnsupportedOperationException();
    }

    @Override
    public Object remove(String key) {
        throw new UnsupportedOperationException();
    }

    @Override
    public boolean asKey(String key) {
        return false;
    }

    @Override
    public boolean asBool(String key) {
        return false;
    }

    @Override
    public boolean contains(String key) {
        return false;
    }

    @Override
    @SuppressWarnings("unchecked")
    public Set getKeys() {
        return Collections.EMPTY_SET;
    }

    @Override
    @SuppressWarnings("unchecked")
    public Map asMap() {
        return Collections.EMPTY_MAP;
    }

    @Override
    public void forEach(Runnable1 action) {
        // Do nothing
    }

    @Override
    public void forEach(Runnable2 action) {
        // Do nothing
    }

    @Override
    public String toString() {
        return "Options {}";
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy