/*
This file is a part of the SteamWar software.
Copyright (C) 2020 SteamWar.de-Serverteam
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see .
*/
package de.steamwar.fightsystem;
import java.util.Collections;
import java.util.EnumSet;
import java.util.Set;
public enum ArenaMode {
NORMAL,
RANKED,
EVENT,
TEST,
CHECK,
PREPARE;
public static final Set All = Collections.unmodifiableSet(EnumSet.allOf(ArenaMode.class));
public static final Set Normal = Collections.unmodifiableSet(EnumSet.of(NORMAL));
public static final Set Check = Collections.unmodifiableSet(EnumSet.of(CHECK));
public static final Set Event = Collections.unmodifiableSet(EnumSet.of(EVENT));
public static final Set Test = Collections.unmodifiableSet(EnumSet.of(TEST, CHECK));
public static final Set Ranked = Collections.unmodifiableSet(EnumSet.of(RANKED));
public static final Set Prepare = Collections.unmodifiableSet(EnumSet.of(PREPARE));
public static final Set AntiTest = Collections.unmodifiableSet(EnumSet.complementOf(EnumSet.of(TEST, CHECK)));
public static final Set AntiEvent = Collections.unmodifiableSet(EnumSet.complementOf(EnumSet.of(EVENT)));
public static final Set AntiPrepare = Collections.unmodifiableSet(EnumSet.complementOf(EnumSet.of(PREPARE)));
public static final Set VariableTeams = Collections.unmodifiableSet(EnumSet.complementOf(EnumSet.of(RANKED, EVENT)));
public static final Set RankedEvent = Collections.unmodifiableSet(EnumSet.of(RANKED, EVENT));
public static final Set Restartable = Collections.unmodifiableSet(EnumSet.of(NORMAL, RANKED));
public static final Set Fight = Collections.unmodifiableSet(EnumSet.of(NORMAL, RANKED, EVENT));
public static final Set SoloLeader = Collections.unmodifiableSet(EnumSet.of(TEST, CHECK, PREPARE));
}