Java com.google.common.base CaseFormat fields, constructors, methods, implement or subclass

Example usage for Java com.google.common.base CaseFormat fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for com.google.common.base CaseFormat.

The text is from its open source code.

Field

CaseFormatLOWER_HYPHEN
Hyphenated variable naming convention, e.g., "lower-hyphen".
CaseFormatLOWER_UNDERSCORE
C++ variable naming convention, e.g., "lower_underscore".
CaseFormatLOWER_CAMEL
Java variable naming convention, e.g., "lowerCamel".
CaseFormatUPPER_CAMEL
Java and C++ class naming convention, e.g., "UpperCamel".
CaseFormatUPPER_UNDERSCORE
Java and C++ constant naming convention, e.g., "UPPER_UNDERSCORE".

Method

booleanequals(Object obj)
Indicates whether some other object is "equal to" this one.
Stringto(CaseFormat format, String str)
Converts the specified String str from this format to the specified format .