Tabnine Logo
BasicBeanDescription.getClassAnnotations
Code IndexAdd Tabnine to your IDE (free)

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

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

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

public Annotations getClassAnnotations() {
  return _beanDesc.getClassAnnotations();
}

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

/**
 * Method called locate all members used for value injection (if any),
 * constructor {@link org.codehaus.jackson.map.deser.impl.ValueInjector} instances, and add them to builder.
 * 
 * @since 1.9
 */
protected void addInjectables(DeserializationConfig config,
    BasicBeanDescription beanDesc, BeanDeserializerBuilder builder)
  throws JsonMappingException
{
  Map<Object, AnnotatedMember> raw = beanDesc.findInjectables();
  if (raw != null) {
    boolean fixAccess = config.isEnabled(DeserializationConfig.Feature.CAN_OVERRIDE_ACCESS_MODIFIERS);
    for (Map.Entry<Object, AnnotatedMember> entry : raw.entrySet()) {
      AnnotatedMember m = entry.getValue();
      if (fixAccess) {
        m.fixAccess(); // to ensure we can call it
      }
      builder.addInjectable(m.getName(), beanDesc.resolveType(m.getGenericType()),
          beanDesc.getClassAnnotations(), m, entry.getKey());
    }
  }
}
origin: org.codehaus.jackson/jackson-mapper-asl

BeanProperty.Std property = new BeanProperty.Std(name, type, beanDesc.getClassAnnotations(), getter);
TypeDeserializer typeDeser = type.getTypeHandler();
SettableBeanProperty prop = new SettableBeanProperty.SetterlessProperty(name, type, typeDeser,
    beanDesc.getClassAnnotations(), getter);
if (propDeser != null) {
  prop = prop.withValueDeserializer(propDeser);
origin: org.codehaus.jackson/jackson-mapper-asl

BeanProperty.Std property = new BeanProperty.Std(name, t0, beanDesc.getClassAnnotations(), param);
JavaType type = resolveType(config, beanDesc, t0, param, property);
if (type != t0) {
    beanDesc.getClassAnnotations(), param, index, injectableValueId);
if (deser != null) {
  prop = prop.withValueDeserializer(deser);
origin: camunda/camunda-bpm-platform

public Annotations getClassAnnotations() {
  return _beanDesc.getClassAnnotations();
}

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

BeanPropertyWriter bpw = new BeanPropertyWriter(am, _beanDesc.getClassAnnotations(), name, declaredType,
    ser, typeSer, serializationType, m, f, suppressNulls, valueToSuppress);
origin: org.codehaus.jackson/jackson-mapper-asl

BeanProperty.Std property = new BeanProperty.Std(name, t0, beanDesc.getClassAnnotations(), field);
JavaType type = resolveType(config, beanDesc, t0, field, property);
TypeDeserializer typeDeser = type.getTypeHandler();
SettableBeanProperty prop = new SettableBeanProperty.FieldProperty(name, type, typeDeser,
    beanDesc.getClassAnnotations(), field);
if (propDeser != null) {
  prop = prop.withValueDeserializer(propDeser);
origin: org.codehaus.jackson/jackson-mapper-asl

BeanProperty.Std property = new BeanProperty.Std(name, t0, beanDesc.getClassAnnotations(), setter);
JavaType type = resolveType(config, beanDesc, t0, setter, property);
TypeDeserializer typeDeser = type.getTypeHandler();
SettableBeanProperty prop = new SettableBeanProperty.MethodProperty(name, type, typeDeser,
    beanDesc.getClassAnnotations(), setter);
if (propDeser != null) {
  prop = prop.withValueDeserializer(propDeser);
origin: org.codehaus.jackson/jackson-mapper-asl

BeanProperty.Std property = new BeanProperty.Std(setter.getName(), type, beanDesc.getClassAnnotations(), setter);
type = resolveType(config, beanDesc, type, setter, property);
origin: camunda/camunda-bpm-platform

/**
 * Method called locate all members used for value injection (if any),
 * constructor {@link org.codehaus.jackson.map.deser.impl.ValueInjector} instances, and add them to builder.
 * 
 * @since 1.9
 */
protected void addInjectables(DeserializationConfig config,
    BasicBeanDescription beanDesc, BeanDeserializerBuilder builder)
  throws JsonMappingException
{
  Map<Object, AnnotatedMember> raw = beanDesc.findInjectables();
  if (raw != null) {
    boolean fixAccess = config.isEnabled(DeserializationConfig.Feature.CAN_OVERRIDE_ACCESS_MODIFIERS);
    for (Map.Entry<Object, AnnotatedMember> entry : raw.entrySet()) {
      AnnotatedMember m = entry.getValue();
      if (fixAccess) {
        m.fixAccess(); // to ensure we can call it
      }
      builder.addInjectable(m.getName(), beanDesc.resolveType(m.getGenericType()),
          beanDesc.getClassAnnotations(), m, entry.getKey());
    }
  }
}
origin: camunda/camunda-bpm-platform

BeanProperty.Std property = new BeanProperty.Std(name, type, beanDesc.getClassAnnotations(), getter);
TypeDeserializer typeDeser = type.getTypeHandler();
SettableBeanProperty prop = new SettableBeanProperty.SetterlessProperty(name, type, typeDeser,
    beanDesc.getClassAnnotations(), getter);
if (propDeser != null) {
  prop = prop.withValueDeserializer(propDeser);
origin: camunda/camunda-bpm-platform

BeanProperty.Std property = new BeanProperty.Std(name, t0, beanDesc.getClassAnnotations(), param);
JavaType type = resolveType(config, beanDesc, t0, param, property);
if (type != t0) {
    beanDesc.getClassAnnotations(), param, index, injectableValueId);
if (deser != null) {
  prop = prop.withValueDeserializer(deser);
origin: org.codehaus.jackson/jackson-mapper-lgpl

public Annotations getClassAnnotations() {
  return _beanDesc.getClassAnnotations();
}

origin: com.barchart.wrap/barchart-wrap-jackson

public Annotations getClassAnnotations() {
  return _beanDesc.getClassAnnotations();
}

origin: ovea-deprecated/jetty-session-redis

public Annotations getClassAnnotations() {
  return _beanDesc.getClassAnnotations();
}

origin: camunda/camunda-bpm-platform

BeanPropertyWriter bpw = new BeanPropertyWriter(am, _beanDesc.getClassAnnotations(), name, declaredType,
    ser, typeSer, serializationType, m, f, suppressNulls, valueToSuppress);
origin: camunda/camunda-bpm-platform

BeanProperty.Std property = new BeanProperty.Std(name, t0, beanDesc.getClassAnnotations(), field);
JavaType type = resolveType(config, beanDesc, t0, field, property);
TypeDeserializer typeDeser = type.getTypeHandler();
SettableBeanProperty prop = new SettableBeanProperty.FieldProperty(name, type, typeDeser,
    beanDesc.getClassAnnotations(), field);
if (propDeser != null) {
  prop = prop.withValueDeserializer(propDeser);
origin: camunda/camunda-bpm-platform

BeanProperty.Std property = new BeanProperty.Std(name, t0, beanDesc.getClassAnnotations(), setter);
JavaType type = resolveType(config, beanDesc, t0, setter, property);
TypeDeserializer typeDeser = type.getTypeHandler();
SettableBeanProperty prop = new SettableBeanProperty.MethodProperty(name, type, typeDeser,
    beanDesc.getClassAnnotations(), setter);
if (propDeser != null) {
  prop = prop.withValueDeserializer(propDeser);
origin: camunda/camunda-bpm-platform

BeanProperty.Std property = new BeanProperty.Std(setter.getName(), type, beanDesc.getClassAnnotations(), setter);
type = resolveType(config, beanDesc, type, setter, property);
origin: org.codehaus.jackson/jackson-mapper-lgpl

/**
 * Method called locate all members used for value injection (if any),
 * constructor {@link org.codehaus.jackson.map.deser.impl.ValueInjector} instances, and add them to builder.
 * 
 * @since 1.9
 */
protected void addInjectables(DeserializationConfig config,
    BasicBeanDescription beanDesc, BeanDeserializerBuilder builder)
  throws JsonMappingException
{
  Map<Object, AnnotatedMember> raw = beanDesc.findInjectables();
  if (raw != null) {
    boolean fixAccess = config.isEnabled(DeserializationConfig.Feature.CAN_OVERRIDE_ACCESS_MODIFIERS);
    for (Map.Entry<Object, AnnotatedMember> entry : raw.entrySet()) {
      AnnotatedMember m = entry.getValue();
      if (fixAccess) {
        m.fixAccess(); // to ensure we can call it
      }
      builder.addInjectable(m.getName(), beanDesc.resolveType(m.getGenericType()),
          beanDesc.getClassAnnotations(), m, entry.getKey());
    }
  }
}
org.codehaus.jackson.map.introspectBasicBeanDescriptiongetClassAnnotations

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
  • findProperties
  • 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
  • findSerializationInclusion,
  • findSingleArgConstructor,
  • getConstructors,
  • getFactoryMethods,
  • getType,
  • hasKnownClassAnnotations,
  • instantiateBean,
  • isFactoryMethod,
  • bindingsForBeanType,
  • findAnyGetter

Popular in Java

  • Parsing JSON documents to java classes using gson
  • setScale (BigDecimal)
  • runOnUiThread (Activity)
  • getSharedPreferences (Context)
  • Pointer (com.sun.jna)
    An abstraction for a native pointer data type. A Pointer instance represents, on the Java side, a na
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • CountDownLatch (java.util.concurrent)
    A synchronization aid that allows one or more threads to wait until a set of operations being perfor
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JComboBox (javax.swing)
  • DateTimeFormat (org.joda.time.format)
    Factory that creates instances of DateTimeFormatter from patterns and styles. Datetime formatting i
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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