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

com.flagwind.commands.CommandCollection Maven / Gradle / Ivy

There is a newer version: 1.0.9
Show newest version
package com.flagwind.commands;

import java.util.*;
import java.util.function.Consumer;

/**
 * 命令集合
 */
public class CommandCollection implements Iterable> {

    private Map items;

    /**
     * 获取命令的总数量。
     * @property
     * @return number
     */
    public int size() {
        return this.items.size();
    }

    public CommandCollection() {
        this.items = new HashMap<>();
    }

    @Override
    public Iterator> iterator() {
        return this.items.entrySet().iterator();
    }

    @Override
    public void forEach(Consumer> action) {
        this.forEach(action);
    }

    /**
     * 将一个命令实例挂载至指定的的路径。
     * @summary 如果指定的路径已存在命令将会抛出异常。
     * @param  path 路径字符串。
     * @param  command 命令。
     */
    public void add(String path, Command command) {
        if (this.items.containsKey(path)) {
            throw new IllegalArgumentException(String.format("The command path '%s' is existed.", path));
        }

        this.items.put(path, command);
    }

    /**
     * 移除指定路径的命令。
     * @param  path 路径字符串。
     */
    public boolean remove(String path) {
        this.items.remove((Object) path);
        return true;
    }

    /**
     * 根据指定的路径获取一个命令。
     * @param  path 路径字符串。
     */
    public Command find(String path) {
        Command command = this.items.get(path);

        return command;
    }

    /**
     * 检测是否包含指定的路径的命令。
     * @param  path
     */
    public boolean contains(String path) {
        return this.items.containsKey(path);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy