本文整理了Java中com.fasterxml.jackson.core.JsonPointer.matchProperty()
方法的一些代码示例,展示了JsonPointer.matchProperty()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JsonPointer.matchProperty()
方法的具体详情如下:
包路径:com.fasterxml.jackson.core.JsonPointer
类名称: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);
}
内容来源于网络,如有侵权,请联系作者删除!