sdmxdl.HasDescription Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdmx-dl-api Show documentation
Show all versions of sdmx-dl-api Show documentation
Easily download official statistics - API
The newest version!
package sdmxdl;
import org.checkerframework.checker.nullness.qual.Nullable;
/**
* Defines the ability to have a human-readable description.
*/
public interface HasDescription {
/**
* Gets an optional human-readable (best-language-match) description.
*
* @return a nullable description
*/
@Nullable String getDescription();
}