Home
last modified time | relevance | path

Searched refs:rawFieldTypes (Results 1 – 3 of 3) sorted by relevance

/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/main/java/org/springframework/format/number/
H A DNumberFormatAnnotationFormatterFactory.java51 Set<Class<?>> rawFieldTypes = new HashSet<Class<?>>(7); in NumberFormatAnnotationFormatterFactory() local
52 rawFieldTypes.add(Short.class); in NumberFormatAnnotationFormatterFactory()
53 rawFieldTypes.add(Integer.class); in NumberFormatAnnotationFormatterFactory()
54 rawFieldTypes.add(Long.class); in NumberFormatAnnotationFormatterFactory()
55 rawFieldTypes.add(Float.class); in NumberFormatAnnotationFormatterFactory()
56 rawFieldTypes.add(Double.class); in NumberFormatAnnotationFormatterFactory()
57 rawFieldTypes.add(BigDecimal.class); in NumberFormatAnnotationFormatterFactory()
58 rawFieldTypes.add(BigInteger.class); in NumberFormatAnnotationFormatterFactory()
59 this.fieldTypes = Collections.unmodifiableSet(rawFieldTypes); in NumberFormatAnnotationFormatterFactory()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/main/java/org/springframework/format/datetime/joda/
H A DJodaDateTimeFormatAnnotationFormatterFactory.java106 Set<Class<?>> rawFieldTypes = new HashSet<Class<?>>(7); in createFieldTypes() local
107 rawFieldTypes.add(ReadableInstant.class); in createFieldTypes()
108 rawFieldTypes.add(LocalDate.class); in createFieldTypes()
109 rawFieldTypes.add(LocalTime.class); in createFieldTypes()
110 rawFieldTypes.add(LocalDateTime.class); in createFieldTypes()
111 rawFieldTypes.add(Date.class); in createFieldTypes()
112 rawFieldTypes.add(Calendar.class); in createFieldTypes()
113 rawFieldTypes.add(Long.class); in createFieldTypes()
114 return Collections.unmodifiableSet(rawFieldTypes); in createFieldTypes()
/dports/java/springframework31/spring-framework-3.1.4.RELEASE/projects/org.springframework.context/src/main/java/org/springframework/format/support/
H A DDefaultFormattingConversionService.java115 Set<Class<?>> rawFieldTypes = new HashSet<Class<?>>(4); in NoJodaDateTimeFormatAnnotationFormatterFactory() local
116 rawFieldTypes.add(Date.class); in NoJodaDateTimeFormatAnnotationFormatterFactory()
117 rawFieldTypes.add(Calendar.class); in NoJodaDateTimeFormatAnnotationFormatterFactory()
118 rawFieldTypes.add(Long.class); in NoJodaDateTimeFormatAnnotationFormatterFactory()
119 this.fieldTypes = Collections.unmodifiableSet(rawFieldTypes); in NoJodaDateTimeFormatAnnotationFormatterFactory()