| Method and Description |
|---|
| com.cinchapi.etl.Transformers.keyCaseFormat(CaseFormat, CaseFormat)
use
keyEnsureCaseFormat(CaseFormat) or
keyConditionalConvertCaseFormat(CaseFormat, CaseFormat)
instead depending on the desired transformation |
| com.cinchapi.etl.Transformers.keyStripInvalidChars(Check<Character>)
use
keyRemoveInvalidChars(Predicate) which takes a
Predicate that tests whether a character is
invalid. Please note that said functionality
is the inverse of this method, which takes a Check
that tests whether a character is valid. |
| com.cinchapi.etl.Transformers.keyValueStripQuotes()
use
keyValueRemoveQuotes() which has the exact same
functionality |
| com.cinchapi.etl.Transformers.removeValuesThatAre(Adjective)
use
instead |
| com.cinchapi.etl.Transformer.transform(String, String)
in version 1.1.0; scheduled to be removed in version 2.0.0.
Use
Transformer.transform(String, Object) instead. |
| com.cinchapi.etl.Transformers.valueSplitOnDelimiter(char, SplitOption...) |