com.fasterxml.jackson.core.JsonPointer.matchProperty()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(135)

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

JsonPointer.matchProperty介绍

暂无

代码示例

代码示例来源:origin: redisson/redisson

@Override
public TokenFilter includeProperty(String name) {
  JsonPointer next = _pathToMatch.matchProperty(name);
  if (next == null) {
    return null;
  }
  if (next.matches()) {
    return TokenFilter.INCLUDE_ALL;
  }
  return new JsonPointerBasedFilter(next);
}

代码示例来源:origin: FasterXML/jackson-core

@Override
public TokenFilter includeProperty(String name) {
  JsonPointer next = _pathToMatch.matchProperty(name);
  if (next == null) {
    return null;
  }
  if (next.matches()) {
    return TokenFilter.INCLUDE_ALL;
  }
  return new JsonPointerBasedFilter(next);
}

代码示例来源:origin: com.arakelian/jackson-utils

@Override
public TokenFilter includeProperty(final String name) {
  final JsonPointer next = _pathToMatch.matchProperty(name);
  if (next == null) {
    return TokenFilter.INCLUDE_ALL;
  }
  if (next.matches()) {
    return null;
  }
  return new JsonPointerNotMatchedFilter(next);
}

代码示例来源:origin: org.kill-bill.billing/killbill-platform-osgi-bundles-logger

@Override
public TokenFilter includeProperty(String name) {
  JsonPointer next = _pathToMatch.matchProperty(name);
  if (next == null) {
    return null;
  }
  if (next.matches()) {
    return TokenFilter.INCLUDE_ALL;
  }
  return new JsonPointerBasedFilter(next);
}

代码示例来源:origin: Nextdoor/bender

@Override
public TokenFilter includeProperty(String name) {
  JsonPointer next = _pathToMatch.matchProperty(name);
  if (next == null) {
    return null;
  }
  if (next.matches()) {
    return TokenFilter.INCLUDE_ALL;
  }
  return new JsonPointerBasedFilter(next);
}

相关文章