Home
last modified time | relevance | path

Searched refs:getAllowGetters (Results 1 – 2 of 2) sorted by relevance

/external/jackson-annotations/src/test/java/com/fasterxml/jackson/annotation/
DJsonIgnorePropertiesTest.java22 assertFalse(EMPTY.getAllowGetters()); in testEmpty()
44 assertFalse(v.getAllowGetters()); in testFromAnnotation()
60 assertTrue(vser.getAllowGetters()); in testFactories()
67 assertFalse(vdeser.getAllowGetters()); in testFactories()
83 assertTrue(EMPTY.withAllowGetters().getAllowGetters()); in testMutantFactories()
84 assertFalse(EMPTY.withoutAllowGetters().getAllowGetters()); in testMutantFactories()
103 assertTrue(v3a.getAllowGetters()); in testSimpleMerge()
110 assertFalse(v3b.getAllowGetters()); in testSimpleMerge()
/external/jackson-annotations/src/main/java/com/fasterxml/jackson/annotation/
DJsonIgnoreProperties.java367 public boolean getAllowGetters() { in getAllowGetters() method in JsonIgnoreProperties.Value