Uses of Class
com.restfb.util.ReflectionUtils.FieldWithAnnotation
Packages that use ReflectionUtils.FieldWithAnnotation
-
Uses of ReflectionUtils.FieldWithAnnotation in com.restfb
Methods in com.restfb with parameters of type ReflectionUtils.FieldWithAnnotationModifier and TypeMethodDescriptionprotected StringDefaultJsonMapper.getFacebookFieldName(ReflectionUtils.FieldWithAnnotation<Facebook> fieldWithAnnotation) For a Java field annotated with theFacebookannotation, figure out what the corresponding Facebook JSON field name to map to it is.protected voidDefaultJsonMapper.logMultipleMappingFailedForField(String facebookFieldName, ReflectionUtils.FieldWithAnnotation<Facebook> fieldWithAnnotation, String json) Dumps out a log message when one of a multiple-mapped Facebook field name JSON-to-Java mapping operation fails.protected ObjectDefaultJsonMapper.toJavaType(ReflectionUtils.FieldWithAnnotation<Facebook> fieldWithAnnotation, JsonObject jsonObject, String facebookFieldName) Extracts JSON data for a field according to itsFacebookannotation and returns it converted to the proper Java type.Method parameters in com.restfb with type arguments of type ReflectionUtils.FieldWithAnnotationModifier and TypeMethodDescriptionDefaultJsonMapper.facebookFieldNamesWithMultipleMappings(List<ReflectionUtils.FieldWithAnnotation<Facebook>> fieldsWithAnnotation) Finds any Facebook JSON fields that are mapped to more than 1 Java field. -
Uses of ReflectionUtils.FieldWithAnnotation in com.restfb.util
Methods in com.restfb.util that return types with arguments of type ReflectionUtils.FieldWithAnnotationModifier and TypeMethodDescriptionstatic <T extends Annotation>
List<ReflectionUtils.FieldWithAnnotation<T>>ReflectionUtils.findFieldsWithAnnotation(Class<?> type, Class<T> annotationType) Finds fields on the giventypeand all of its superclasses annotated with annotations of typeannotationType.