org.springframework.core.convert.TypeDescriptor.annotationsMatch()方法的使用及代码示例

x33g5p2x  于2022-01-29 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(84)

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

TypeDescriptor.annotationsMatch介绍

暂无

代码示例

代码示例来源:origin: spring-projects/spring-framework

@Override
public boolean equals(Object other) {
  if (this == other) {
    return true;
  }
  if (!(other instanceof TypeDescriptor)) {
    return false;
  }
  TypeDescriptor otherDesc = (TypeDescriptor) other;
  if (getType() != otherDesc.getType()) {
    return false;
  }
  if (!annotationsMatch(otherDesc)) {
    return false;
  }
  if (isCollection() || isArray()) {
    return ObjectUtils.nullSafeEquals(getElementTypeDescriptor(), otherDesc.getElementTypeDescriptor());
  }
  else if (isMap()) {
    return (ObjectUtils.nullSafeEquals(getMapKeyTypeDescriptor(), otherDesc.getMapKeyTypeDescriptor()) &&
        ObjectUtils.nullSafeEquals(getMapValueTypeDescriptor(), otherDesc.getMapValueTypeDescriptor()));
  }
  else {
    return true;
  }
}

代码示例来源:origin: org.springframework/spring-core

@Override
public boolean equals(Object other) {
  if (this == other) {
    return true;
  }
  if (!(other instanceof TypeDescriptor)) {
    return false;
  }
  TypeDescriptor otherDesc = (TypeDescriptor) other;
  if (getType() != otherDesc.getType()) {
    return false;
  }
  if (!annotationsMatch(otherDesc)) {
    return false;
  }
  if (isCollection() || isArray()) {
    return ObjectUtils.nullSafeEquals(getElementTypeDescriptor(), otherDesc.getElementTypeDescriptor());
  }
  else if (isMap()) {
    return (ObjectUtils.nullSafeEquals(getMapKeyTypeDescriptor(), otherDesc.getMapKeyTypeDescriptor()) &&
        ObjectUtils.nullSafeEquals(getMapValueTypeDescriptor(), otherDesc.getMapValueTypeDescriptor()));
  }
  else {
    return true;
  }
}

代码示例来源:origin: org.apache.servicemix.bundles/org.apache.servicemix.bundles.spring-core

@Override
public boolean equals(Object other) {
  if (this == other) {
    return true;
  }
  if (!(other instanceof TypeDescriptor)) {
    return false;
  }
  TypeDescriptor otherDesc = (TypeDescriptor) other;
  if (getType() != otherDesc.getType()) {
    return false;
  }
  if (!annotationsMatch(otherDesc)) {
    return false;
  }
  if (isCollection() || isArray()) {
    return ObjectUtils.nullSafeEquals(getElementTypeDescriptor(), otherDesc.getElementTypeDescriptor());
  }
  else if (isMap()) {
    return (ObjectUtils.nullSafeEquals(getMapKeyTypeDescriptor(), otherDesc.getMapKeyTypeDescriptor()) &&
        ObjectUtils.nullSafeEquals(getMapValueTypeDescriptor(), otherDesc.getMapValueTypeDescriptor()));
  }
  else {
    return true;
  }
}

代码示例来源:origin: apache/servicemix-bundles

@Override
public boolean equals(Object other) {
  if (this == other) {
    return true;
  }
  if (!(other instanceof TypeDescriptor)) {
    return false;
  }
  TypeDescriptor otherDesc = (TypeDescriptor) other;
  if (getType() != otherDesc.getType()) {
    return false;
  }
  if (!annotationsMatch(otherDesc)) {
    return false;
  }
  if (isCollection() || isArray()) {
    return ObjectUtils.nullSafeEquals(getElementTypeDescriptor(), otherDesc.getElementTypeDescriptor());
  }
  else if (isMap()) {
    return (ObjectUtils.nullSafeEquals(getMapKeyTypeDescriptor(), otherDesc.getMapKeyTypeDescriptor()) &&
        ObjectUtils.nullSafeEquals(getMapValueTypeDescriptor(), otherDesc.getMapValueTypeDescriptor()));
  }
  else {
    return true;
  }
}

相关文章

微信公众号

最新文章

更多