Searched refs:UPPER_CAMEL_CASE (Results 1 – 9 of 9) sorted by relevance
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/introspect/ |
D | TestNamingStrategyStd.java | 273 …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/ |
D | FieldNamingTest.java | 22 import static com.google.gson.FieldNamingPolicy.UPPER_CAMEL_CASE; 42 Gson gson = getGsonWithNamingPolicy(UPPER_CAMEL_CASE); in testUpperCamelCase()
|
D | NamingPolicyTest.java | 46 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/ |
D | PropertyNamingStrategy.java | 49 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/ |
D | TestCreatorWithNamingStrategy556.java | 61 .setPropertyNamingStrategy(PropertyNamingStrategy.UPPER_CAMEL_CASE)
|
/external/gson/gson/src/main/java/com/google/gson/ |
D | FieldNamingPolicy.java | 53 UPPER_CAMEL_CASE() { in UPPER_CAMEL_CASE() method
|
/external/gson/gson/src/test/java/com/google/gson/ |
D | FieldNamingPolicyTest.java | 69 FieldNamingPolicy.UPPER_CAMEL_CASE, in testUpperCasingLocaleIndependent()
|
/external/gson/ |
D | UserGuide.md | 716 Gson gson = new GsonBuilder().setFieldNamingPolicy(FieldNamingPolicy.UPPER_CAMEL_CASE).create();
|
/external/jackson-databind/release-notes/ |
D | VERSION-2.x | 1102 PASCAL_CASE_TO_CAMEL_CASE as UPPER_CAMEL_CASE
|