Example usage for org.apache.commons.lang3.text FormatFactory interface-usage

List of usage examples for org.apache.commons.lang3.text FormatFactory interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.lang3.text FormatFactory interface-usage.

Usage

From source file org.efaps.esjp.common.format.UpperCaseFormatFcty.java

/**
 * TODO comment!
 *
 * @author The eFaps Team
 */
@EFapsUUID("251b0699-fea9-48c1-9562-5bfeff649c4c")

From source file org.efaps.esjp.common.format.LeftFormatFcty.java

/**
 * TODO comment!
 *
 * @author The eFaps Team
 */
@EFapsUUID("b5db289c-f0ab-4596-bf39-3688e4749cd9")

From source file org.efaps.esjp.common.format.DateTimeFormatFcty.java

/**
 * TODO comment!
 *
 * @author The eFaps Team
 */
@EFapsUUID("4724d655-3070-41a1-9ba3-1b7b8d02d4a3")

From source file org.efaps.esjp.common.format.EvalFormatFcty.java

/**
 * TODO comment!
 *
 * @author The eFaps Team
 */
@EFapsUUID("689bf0c2-b5fb-466d-bd28-e6bbba09072b")

From source file com.vityuk.ginger.provider.format.JdkDateUtils.java

class JdkDateTimeFormatFactory implements FormatFactory {
    @Override
    public Format getFormat(String name, String style, Locale locale) {
        FormatType formatType = FormatType.forFormat(name);
        return JdkDateUtils.createJdkDateFormat(formatType, style, locale);
    }

From source file com.vityuk.ginger.provider.format.JodaTimeUtils.java

class JdkAndJodaDateTimeFormatFactory implements FormatFactory {
    @Override
    public Format getFormat(String name, String style, Locale locale) {
        FormatType formatType = FormatType.forFormat(name);

        DateTimeFormatter jodaFormatter = JodaTimeUtils.createJodaDateFormatter(formatType, style, locale);