Enum DeliveryModeType

    • Enum Constant Detail

      • RCON

        public static final DeliveryModeType RCON
        Represents the RCON protocol based delivery mode.
      • PLUGIN

        public static final DeliveryModeType PLUGIN
        Represents the Plugin based delivery mode.
      • UNKNOWN

        public static final DeliveryModeType UNKNOWN
        Represents an unknown delivery mode, not known yet.
    • Method Detail

      • values

        public static DeliveryModeType[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (DeliveryModeType c : DeliveryModeType.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static DeliveryModeType valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • getByKey

        @NotNull
        public static @NotNull DeliveryModeType getByKey​(@Nullable
                                                         @Nullable String key)
        Get the enum constant by the known delivery mode key (can be null).
        If the key is null/empty or relevant enum constant with this key will not be found then this method will return UNKNOWN constant as default.
        Parameters:
        key - the delivery mode key to find an enum constant.
        Returns:
        The found delivery mode enum constant or UNKNOWN by default.