org.codehaus.jackson.map.introspect.AnnotatedField.withAnnotations()方法的使用及代码示例

x33g5p2x  于2022-01-17 转载在 其他  
字(4.3k)|赞(0)|评价(0)|浏览(102)

本文整理了Java中org.codehaus.jackson.map.introspect.AnnotatedField.withAnnotations()方法的一些代码示例,展示了AnnotatedField.withAnnotations()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AnnotatedField.withAnnotations()方法的具体详情如下:
包路径:org.codehaus.jackson.map.introspect.AnnotatedField
类名称:AnnotatedField
方法名:withAnnotations

AnnotatedField.withAnnotations介绍

暂无

代码示例

代码示例来源:origin: org.codehaus.jackson/jackson-mapper-asl

@SuppressWarnings("unchecked")
public void mergeAnnotations(boolean forSerialization)
{
  if (forSerialization) {
    if (_getters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _getters, _fields, _ctorParameters, _setters);
      _getters = _getters.withValue(_getters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _ctorParameters, _setters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  } else {
    if (_ctorParameters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _ctorParameters, _setters, _fields, _getters);
      _ctorParameters = _ctorParameters.withValue(_ctorParameters.value.withAnnotations(ann));
    } else if (_setters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _setters, _fields, _getters);
      _setters = _setters.withValue(_setters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _getters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  }
}

代码示例来源:origin: camunda/camunda-bpm-platform

@SuppressWarnings("unchecked")
public void mergeAnnotations(boolean forSerialization)
{
  if (forSerialization) {
    if (_getters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _getters, _fields, _ctorParameters, _setters);
      _getters = _getters.withValue(_getters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _ctorParameters, _setters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  } else {
    if (_ctorParameters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _ctorParameters, _setters, _fields, _getters);
      _ctorParameters = _ctorParameters.withValue(_ctorParameters.value.withAnnotations(ann));
    } else if (_setters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _setters, _fields, _getters);
      _setters = _setters.withValue(_setters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _getters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  }
}

代码示例来源:origin: ovea-deprecated/jetty-session-redis

@SuppressWarnings("unchecked")
public void mergeAnnotations(boolean forSerialization)
{
  if (forSerialization) {
    if (_getters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _getters, _fields, _ctorParameters, _setters);
      _getters = _getters.withValue(_getters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _ctorParameters, _setters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  } else {
    if (_ctorParameters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _ctorParameters, _setters, _fields, _getters);
      _ctorParameters = _ctorParameters.withValue(_ctorParameters.value.withAnnotations(ann));
    } else if (_setters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _setters, _fields, _getters);
      _setters = _setters.withValue(_setters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _getters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  }
}

代码示例来源:origin: org.codehaus.jackson/jackson-mapper-lgpl

@SuppressWarnings("unchecked")
public void mergeAnnotations(boolean forSerialization)
{
  if (forSerialization) {
    if (_getters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _getters, _fields, _ctorParameters, _setters);
      _getters = _getters.withValue(_getters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _ctorParameters, _setters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  } else {
    if (_ctorParameters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _ctorParameters, _setters, _fields, _getters);
      _ctorParameters = _ctorParameters.withValue(_ctorParameters.value.withAnnotations(ann));
    } else if (_setters != null) {
      AnnotationMap ann = _mergeAnnotations(0, _setters, _fields, _getters);
      _setters = _setters.withValue(_setters.value.withAnnotations(ann));
    } else if (_fields != null) {
      AnnotationMap ann = _mergeAnnotations(0, _fields, _getters);
      _fields = _fields.withValue(_fields.value.withAnnotations(ann));
    }
  }
}

相关文章