Home
last modified time | relevance | path

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

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/
DTestNamingStrategyStd.java350 PropertyNamingStrategy.LOWER_DOT_CASE.nameForField(null, null, "someValue")); in testLowerCaseWithDotsStrategyStandAlone()
352 PropertyNamingStrategy.LOWER_DOT_CASE.nameForField(null, null, "SomeValue")); in testLowerCaseWithDotsStrategyStandAlone()
354 PropertyNamingStrategy.LOWER_DOT_CASE.nameForField(null, null, "URL")); in testLowerCaseWithDotsStrategyStandAlone()
356 PropertyNamingStrategy.LOWER_DOT_CASE.nameForField(null, null, "URLStuff")); in testLowerCaseWithDotsStrategyStandAlone()
358 PropertyNamingStrategy.LOWER_DOT_CASE.nameForField(null, null, "SomeURLStuff")); in testLowerCaseWithDotsStrategyStandAlone()
364 .propertyNamingStrategy(PropertyNamingStrategy.LOWER_DOT_CASE) in testSimpleLowerCaseWithDots()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DPropertyNamingStrategy.java86 public static final PropertyNamingStrategy LOWER_DOT_CASE = new LowerDotCaseStrategy(); field in PropertyNamingStrategy