Searched refs:_allowGetters (Results 1 – 1 of 1) sorted by relevance
/external/jackson-annotations/src/main/java/com/fasterxml/jackson/annotation/ |
D | JsonIgnoreProperties.java | 127 protected final boolean _allowGetters; field in JsonIgnoreProperties.Value 142 _allowGetters = allowGetters; in Value() 262 boolean allowGetters = _allowGetters || overrides._allowGetters; in withOverrides() 270 return construct(ignored, _ignoreUnknown, _allowGetters, _allowSetters, _merge); in withIgnored() 274 return construct(_asSet(ignored), _ignoreUnknown, _allowGetters, _allowSetters, _merge); in withIgnored() 278 return construct(null, _ignoreUnknown, _allowGetters, _allowSetters, _merge); in withoutIgnored() 283 construct(_ignored, true, _allowGetters, _allowSetters, _merge); in withIgnoreUnknown() 287 construct(_ignored, false, _allowGetters, _allowSetters, _merge); in withoutIgnoreUnknown() 291 return _allowGetters ? this : in withAllowGetters() 295 return !_allowGetters ? this : in withoutAllowGetters() [all …]
|