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

com.github.bjoernpetersen.jmusicbot.config.ConfigChecker Maven / Gradle / Ivy

There is a newer version: 0.25.0
Show newest version
package com.github.bjoernpetersen.jmusicbot.config;

import javax.annotation.Nonnull;
import javax.annotation.Nullable;

@FunctionalInterface
public interface ConfigChecker {

  /**
   * Checks whether the given value is valid.
   *
   * @param value a config value
   * @return an warning message, or null
   */
  @Nullable
  String check(@Nonnull String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy