package com.gmail.nossr50.commands; import com.google.common.collect.ImmutableList; import java.util.List; public class CommandConstants { public static final List TELEPORT_SUBCOMMANDS = ImmutableList.of("toggle", "accept", "acceptany", "acceptall"); public static final List ALLIANCE_SUBCOMMANDS = ImmutableList.of("invite", "accept", "disband"); public static final List TRUE_FALSE_OPTIONS = ImmutableList.of("on", "off", "true", "false", "enabled", "disabled"); public static final List RESET_OPTIONS = ImmutableList.of("clear", "reset"); }