Home
last modified time | relevance | path

Searched refs:UPPER_CAMEL_CASE (Results 1 – 9 of 9) sorted by relevance

/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/
DTestNamingStrategyStd.java273 …assertEquals("UserName", PropertyNamingStrategy.UPPER_CAMEL_CASE.nameForField(null, null, "userNam… in testPascalCaseStandAlone()
274 … assertEquals("User", PropertyNamingStrategy.UPPER_CAMEL_CASE.nameForField(null, null, "User")); in testPascalCaseStandAlone()
275 … assertEquals("User", PropertyNamingStrategy.UPPER_CAMEL_CASE.nameForField(null, null, "user")); in testPascalCaseStandAlone()
276 assertEquals("X", PropertyNamingStrategy.UPPER_CAMEL_CASE.nameForField(null, null, "x")); in testPascalCaseStandAlone()
278 …assertEquals("BADPublicName", PropertyNamingStrategy.UPPER_CAMEL_CASE.nameForField(null, null, "bA… in testPascalCaseStandAlone()
279 …assertEquals("BADPublicName", PropertyNamingStrategy.UPPER_CAMEL_CASE.nameForGetterMethod(null, nu… in testPascalCaseStandAlone()
286 .setPropertyNamingStrategy(PropertyNamingStrategy.UPPER_CAMEL_CASE) in testIssue428PascalWithOverrides()
/external/gson/gson/src/test/java/com/google/gson/functional/
DFieldNamingTest.java22 import static com.google.gson.FieldNamingPolicy.UPPER_CAMEL_CASE;
42 Gson gson = getGsonWithNamingPolicy(UPPER_CAMEL_CASE); in testUpperCamelCase()
DNamingPolicyTest.java46 Gson gson = builder.setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE).create(); in testGsonWithNonDefaultFieldNamingPolicySerialization()
53 Gson gson = builder.setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE).create(); in testGsonWithNonDefaultFieldNamingPolicyDeserialiation()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DPropertyNamingStrategy.java49 public static final PropertyNamingStrategy UPPER_CAMEL_CASE = new UpperCamelCaseStrategy(); field in PropertyNamingStrategy
444 public static final PropertyNamingStrategy PASCAL_CASE_TO_CAMEL_CASE = UPPER_CAMEL_CASE;
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/creators/
DTestCreatorWithNamingStrategy556.java61 .setPropertyNamingStrategy(PropertyNamingStrategy.UPPER_CAMEL_CASE)
/external/gson/gson/src/main/java/com/google/gson/
DFieldNamingPolicy.java53 UPPER_CAMEL_CASE() { in UPPER_CAMEL_CASE() method
/external/gson/gson/src/test/java/com/google/gson/
DFieldNamingPolicyTest.java69 FieldNamingPolicy.UPPER_CAMEL_CASE, in testUpperCasingLocaleIndependent()
/external/gson/
DUserGuide.md716 Gson gson = new GsonBuilder().setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE).create();
/external/jackson-databind/release-notes/
DVERSION-2.x1102 PASCAL_CASE_TO_CAMEL_CASE as UPPER_CAMEL_CASE