Example usage for org.springframework.format AnnotationFormatterFactory interface-usage

List of usage examples for org.springframework.format AnnotationFormatterFactory interface-usage

Introduction

In this page you can find the example usage for org.springframework.format AnnotationFormatterFactory interface-usage.

Usage

From source file com.nec.harvest.convert.MaskFormatAnnotationFormatterFactory.java

/**
 * Mask format annotation
 * 
 * @author <a href="mailto:sondn@nec.vn">Ngoc Son Dang</a>
 * @version MaskFormatAnnotationFormatterFactory.java
 * @since 2014/06/06

From source file com.mylaensys.dhtmlx.adapter.format.KeyAnnotationFormatterFactory.java

/**
 * Key Annotation for Google datastore JPA
 *
 * @author Madytyoo
 */
public class KeyAnnotationFormatterFactory implements AnnotationFormatterFactory<KeyFormat> {

From source file br.com.mv.modulo.utils.MaskFormatAnnotationFormatterFactory.java

public class MaskFormatAnnotationFormatterFactory implements AnnotationFormatterFactory<MaskFormat> {

    @Override
    public Set<Class<?>> getFieldTypes() {
        Set<Class<?>> fieldTypes = new HashSet<Class<?>>(1, 1);
        fieldTypes.add(String.class);

From source file org.jdal.text.PeriodFormatAnnotationFactory.java

/**
 * PeriodFormat Annotation Factory.
 * 
 * @author Jose Luis Martin - (jlm@joseluismartin.info)
 */
public class PeriodFormatAnnotationFactory implements AnnotationFormatterFactory<PeriodFormat> {

From source file com.guxuede.gdxFramework.util.support.DateTimeFormatAnnotationFormatterFactory.java

/**
 * Formats fields annotated with the {@link DateTimeFormat} annotation using
 * a {@link DateFormatter}.
 *
 * @author Phillip Webb
 * @since 3.2

From source file com.trenako.format.IntegerAnnotationFormatterFactory.java

/**
 * @author Carlo Micieli
 */
public class IntegerAnnotationFormatterFactory
        implements AnnotationFormatterFactory<IntegerFormat>, EmbeddedValueResolverAware {

From source file cherry.foundation.type.format.CustomNumberFormatAnnotationFormatterFactory.java

public class CustomNumberFormatAnnotationFormatterFactory
        implements AnnotationFormatterFactory<CustomNumberFormat> {

    private List<NumberFormatter> numberFormatter;

    private final Set<Class<?>> fieldTypes = new HashSet<Class<?>>(asList(Byte.class, Short.class, Integer.class,

From source file cherry.foundation.type.format.CustomDateTimeFormatAnnotationFormatterFactory.java

public class CustomDateTimeFormatAnnotationFormatterFactory
        implements AnnotationFormatterFactory<CustomDateTimeFormat> {

    private String dateToPrint;

    private String dateToParse;