congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
BasicBeanDescription.findProperties
Code IndexAdd Tabnine to your IDE (free)

How to use
findProperties
method
in
org.codehaus.jackson.map.introspect.BasicBeanDescription

Best Java code snippets using org.codehaus.jackson.map.introspect.BasicBeanDescription.findProperties (Showing top 11 results out of 315)

origin: org.codehaus.jackson/jackson-mapper-asl

throws JsonMappingException
List<BeanPropertyDefinition> properties = beanDesc.findProperties();
AnnotationIntrospector intr = config.getAnnotationIntrospector();
origin: org.codehaus.jackson/jackson-mapper-asl

throws JsonMappingException
List<BeanPropertyDefinition> props = beanDesc.findProperties();
origin: camunda/camunda-bpm-platform

throws JsonMappingException
List<BeanPropertyDefinition> properties = beanDesc.findProperties();
AnnotationIntrospector intr = config.getAnnotationIntrospector();
origin: camunda/camunda-bpm-platform

throws JsonMappingException
List<BeanPropertyDefinition> props = beanDesc.findProperties();
origin: OneBusAway/onebusaway-application-modules

 @Override
 public JsonSerializer<?> modifySerializer(SerializationConfig config,
   BasicBeanDescription beanDesc, JsonSerializer<?> serializer) {
  
  if(serializer instanceof BeanSerializer) {
   List<BeanPropertyDefinition> properties = beanDesc.findProperties();
   for(BeanPropertyDefinition property : properties) {
    if(property.getName().equals("value") || property.getName().equals("any")) {
     String fieldName = property.getField().getName();
     if(fieldName != null)
      return super.modifySerializer(config, beanDesc, new CustomValueObjectSerializer((BeanSerializer)serializer, fieldName));
    }
   }
   
  }
  
  return super.modifySerializer(config, beanDesc, serializer);
 }
}
origin: com.netflix.schlep/schlep-core

for (BeanPropertyDefinition prop : beanDesc.findProperties()) {
  AnnotatedMethod setter = prop.getSetter();
  if (setter != null && setter.getParameterClass(0).isInterface()) {
origin: OneBusAway/onebusaway-application-modules

 @Override
 public JsonSerializer<?> modifySerializer(SerializationConfig config,
   BasicBeanDescription beanDesc, JsonSerializer<?> serializer) {
  
  if(serializer instanceof BeanSerializer) {
   List<BeanPropertyDefinition> properties = beanDesc.findProperties();
   for(BeanPropertyDefinition property : properties) {
    if(property.getName().equals("value") || property.getName().equals("any")) {
     String fieldName = property.getField().getName();
     if(fieldName != null)
      return super.modifySerializer(config, beanDesc, new CustomValueObjectSerializer((BeanSerializer)serializer, fieldName));
    }
   }
   
  }
  
  return super.modifySerializer(config, beanDesc, serializer);
 }
}
origin: org.codehaus.jackson/jackson-mapper-lgpl

throws JsonMappingException
List<BeanPropertyDefinition> properties = beanDesc.findProperties();
AnnotationIntrospector intr = config.getAnnotationIntrospector();
origin: ovea-deprecated/jetty-session-redis

throws JsonMappingException
List<BeanPropertyDefinition> properties = beanDesc.findProperties();
AnnotationIntrospector intr = config.getAnnotationIntrospector();
origin: ovea-deprecated/jetty-session-redis

throws JsonMappingException
List<BeanPropertyDefinition> props = beanDesc.findProperties();
origin: org.codehaus.jackson/jackson-mapper-lgpl

throws JsonMappingException
List<BeanPropertyDefinition> props = beanDesc.findProperties();
org.codehaus.jackson.map.introspectBasicBeanDescriptionfindProperties

Popular methods of BasicBeanDescription

  • getBeanClass
  • getClassInfo
  • <init>
  • _findPropertyFields
  • findAnySetter
    Method used to locate the method of introspected class that implements org.codehaus.jackson.annotate
  • findDefaultConstructor
    Method that will locate the no-arg constructor for this class, if it has one, and that constructor h
  • findFactoryMethod
    Method that can be called to find if introspected class declares a static "valueOf" factory method t
  • findJsonValueMethod
    Method for locating the getter method that is annotated with org.codehaus.jackson.annotate.JsonValue
  • findMethod
  • findSerializationInclusion
    Method for determining whether null properties should be written out for a Bean of introspected type
  • findSingleArgConstructor
    Method that can be called to locate a single-arg constructor that takes specified exact type (will n
  • getConstructors
  • findSingleArgConstructor,
  • getConstructors,
  • getFactoryMethods,
  • getType,
  • hasKnownClassAnnotations,
  • instantiateBean,
  • isFactoryMethod,
  • bindingsForBeanType,
  • findAnyGetter

Popular in Java

  • Making http requests using okhttp
  • getExternalFilesDir (Context)
  • runOnUiThread (Activity)
  • getContentResolver (Context)
  • BorderLayout (java.awt)
    A border layout lays out a container, arranging and resizing its components to fit in five regions:
  • FlowLayout (java.awt)
    A flow layout arranges components in a left-to-right flow, much like lines of text in a paragraph. F
  • Graphics2D (java.awt)
    This Graphics2D class extends the Graphics class to provide more sophisticated control overgraphics
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now