Class BuilderFrameworkSupportUtils
java.lang.Object
org.checkerframework.checker.calledmethods.builder.BuilderFrameworkSupportUtils
A utility class of static methods used in supporting builder-generation frameworks.
- 
Method Summary
Modifier and TypeMethodDescriptionstatic Stringcapitalize(String prop) Capitalizes the first letter of the given string.static booleanReturns true if the given type is one of the immutable collections defined in com.google.common.collect. 
- 
Method Details
- 
isGuavaImmutableType
Returns true if the given type is one of the immutable collections defined in com.google.common.collect.- Parameters:
 type- a type- Returns:
 - true if the type is a Guava immutable collection
 
 - 
capitalize
Capitalizes the first letter of the given string.- Parameters:
 prop- a String- Returns:
 - the same String, but with the first character capitalized
 
 
 -