Interface LocalizationPart<C>

Type Parameters:
C - the type of the context object, which provides additional data about the localization part.
All Superinterfaces:
Serializable
All Known Implementing Classes:
LocalizationPart.ActionPart, LocalizationPart.AdditionalInfoPart, LocalizationPart.HelpingWordsPart, LocalizationPart.ObjectNamePart, LocalizationPart.ObjectPart

Single part of the potentially bigger localization There are several types of localization parts, each of which can be created using provided factory methods.
  • Method Details

    • wrap

    • forObject

      static <C> LocalizationPart<C> forObject(LocalizableMessage object, C context)
      Creates localization part of the "Object" type.
      Type Parameters:
      C - the type of the context.
      Parameters:
      object - the localizable message which represent the "object" in the bigger sentence.
      context - the context used to provide additional data about the object.
      Returns:
      new instance of the object localization part.
    • forObjectName

      static <C> LocalizationPart<C> forObjectName(LocalizableMessage objectName, C context)
      Creates localization part of the "Object name" type.
      Type Parameters:
      C - the type of the context.
      Parameters:
      objectName - the localizable message which represent the object's name in the bigger sentence.
      context - the context used to provide additional data about the object.
      Returns:
      new instance of the object's name localization part.
    • forAction

      static <C> LocalizationPart<C> forAction(LocalizableMessage action, C context)
      Creates localization part of the "Action" type.
      Type Parameters:
      C - the type of the context.
      Parameters:
      action - the localizable message which represent the "action" in the bigger sentence.
      context - the context used to provide additional data about the action.
      Returns:
      new instance of the action localization part.
    • forAdditionalInfo

      static <C> LocalizationPart<C> forAdditionalInfo(LocalizableMessage additionalInfo, C context)
      Creates localization part of the "Additional info" type.
      Type Parameters:
      C - the type of the context.
      Parameters:
      additionalInfo - the localizable message which represent some the additional information about the object (or possibly action).
      context - the context used to provide additional data about the object.
      Returns:
      new instance of the additional info localization part.
    • forHelpingWords

      static <C> LocalizationPart<C> forHelpingWords(LocalizableMessage helpingWords)
      Creates localization part of the "Helping words" type.
      Type Parameters:
      C - the type of the context (which is not used in this particular case).
      Parameters:
      helpingWords - the localizable message which represent some kind of "helping words" in the bigger sentence. It may be any words form simple "is" or "has been" to whole sentence.
      Returns:
      new instance of the helping words localization part.