
com.belladati.sdk.util.Localizable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sdk-api Show documentation
Show all versions of sdk-api Show documentation
The BellaDati SDK allows accessing a BellaDati server from 3rd-party applications using Java. This project contains the SDK's interface definitions.
package com.belladati.sdk.util;
import java.util.Locale;
/**
* An item whose name can be localized in multiple languages.
*
* @author Chris Hennigfeld
*/
public interface Localizable {
/**
* Returns the name of this item in the given locale. Returns the default
* name if no localization exists.
*
* @param locale locale to look for
* @return the name of this item in the given locale, or the default name
*/
String getName(Locale locale);
/**
* Checks if this item has a localization for the given locale.
*
* @param locale locale to check
* @return true if a localization exists
*/
boolean hasLocalization(Locale locale);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy