Interface FormatFactory

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface FormatFactory
    Format factory.
    Since:
    1.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.text.Format getFormat​(java.lang.String name, java.lang.String arguments, java.util.Locale locale)
      Gets or creates a format instance.
    • Method Detail

      • getFormat

        java.text.Format getFormat​(java.lang.String name,
                                   java.lang.String arguments,
                                   java.util.Locale locale)
        Gets or creates a format instance.
        Parameters:
        name - The format type name.
        arguments - Arguments used to create the format instance. This allows the FormatFactory to implement the "format style" concept from MessageFormat.
        locale - The locale, may be null.
        Returns:
        The format instance.