Interface LocalizedDisplayNamed

  • All Known Subinterfaces:
    TransactionCode

    public interface LocalizedDisplayNamed
    Represents an object with a localized display name
    Since:
    12.31
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getDisplayName​(java.util.Locale locale)
      Returns the display name of this object in the specified language.
      java.util.Map<java.util.Locale,​java.lang.String> getLocalizedDisplayNames()
      Returns the localized display names of this object.
    • Method Detail

      • getDisplayName

        java.lang.String getDisplayName​(java.util.Locale locale)
        Returns the display name of this object in the specified language. If the specified language is not supported the configured default language of the novomind iAGENT system will be used instead. Please note that only the language attribute of the given Locale is used.
        Parameters:
        locale - the locale with the language used to localize the display name of this object
        Returns:
        the display name of this object in the specified language or the default language
        Since:
        12.31
      • getLocalizedDisplayNames

        java.util.Map<java.util.Locale,​java.lang.String> getLocalizedDisplayNames()
        Returns the localized display names of this object. Please note that only the language attribute of the Locales is used.
        Returns:
        a map with all localized names of this object
        Since:
        12.31