001/*
002 * Copyright (c) 2016-2017 Daniel Ennis (Aikar) - MIT License
003 *
004 *  Permission is hereby granted, free of charge, to any person obtaining
005 *  a copy of this software and associated documentation files (the
006 *  "Software"), to deal in the Software without restriction, including
007 *  without limitation the rights to use, copy, modify, merge, publish,
008 *  distribute, sublicense, and/or sell copies of the Software, and to
009 *  permit persons to whom the Software is furnished to do so, subject to
010 *  the following conditions:
011 *
012 *  The above copyright notice and this permission notice shall be
013 *  included in all copies or substantial portions of the Software.
014 *
015 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
016 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
017 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
018 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
019 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
020 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
021 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
022 */
023
024package co.aikar.commands;
025
026import co.aikar.locales.MessageKey;
027import co.aikar.locales.MessageKeyProvider;
028
029import java.util.Locale;
030
031/**
032 * Enum Name = MessageKey in lowercase prefixed with acf-core.
033 */
034@SuppressWarnings("WeakerAccess")
035public enum MessageKeys implements MessageKeyProvider {
036    PERMISSION_DENIED,
037    PERMISSION_DENIED_PARAMETER,
038    ERROR_GENERIC_LOGGED,
039    UNKNOWN_COMMAND,
040    INVALID_SYNTAX,
041    ERROR_PREFIX,
042    ERROR_PERFORMING_COMMAND,
043    INFO_MESSAGE,
044    PLEASE_SPECIFY_ONE_OF,
045    MUST_BE_A_NUMBER,
046    MUST_BE_MIN_LENGTH,
047    MUST_BE_MAX_LENGTH,
048    PLEASE_SPECIFY_AT_LEAST,
049    PLEASE_SPECIFY_AT_MOST,
050    NOT_ALLOWED_ON_CONSOLE,
051    COULD_NOT_FIND_PLAYER,
052    NO_COMMAND_MATCHED_SEARCH,
053    HELP_PAGE_INFORMATION,
054    HELP_NO_RESULTS,
055    HELP_HEADER,
056    HELP_FORMAT,
057    HELP_DETAILED_HEADER,
058    HELP_DETAILED_COMMAND_FORMAT,
059    HELP_DETAILED_PARAMETER_FORMAT,
060    HELP_SEARCH_HEADER,
061    ;
062
063    private final MessageKey key = MessageKey.of("acf-core." + this.name().toLowerCase(Locale.ENGLISH));
064
065    public MessageKey getMessageKey() {
066        return key;
067    }
068}