Skip navigation links
C E F K N R T V 

C

com.cinchapi.etl - package com.cinchapi.etl
 
compose(Transformer...) - Static method in class com.cinchapi.etl.Transformers
Return a CompositeTransformer that invokes each of the transformers in order.
composeForEach(Transformer...) - Static method in class com.cinchapi.etl.Transformers
Return a CompositeTransformer that wrapers each of the transformers in a forEach(Transformer) transformer} and invokes each of them in order

E

explode() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that explodes a key/value pair into a nested data structure.

F

forEach(Transformer) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that will apply the provided transformer to every item in a value that is a sequence or to the value itself if the value is not a sequence.

K

keyCaseFormat(CaseFormat, CaseFormat) - Static method in class com.cinchapi.etl.Transformers
Deprecated.
keyConditionalConvertCaseFormat(CaseFormat, CaseFormat) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that converts a key to a CaseFormat if and only if the key currently matches another undesired format.
keyEnsureCaseFormat(CaseFormat) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that ensures a key is in the specified case format
keyMap(Map<String, String>) - Static method in class com.cinchapi.etl.Transformers
Transform keys to other keys using the provided mapping.
keyRemoveInvalidChars(Collection<Character>) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that removes all the character in the invalid collection.
keyRemoveInvalidChars(Predicate<Character>) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that removes all characters that match the invalid Predicate from a key.
keyRemoveWhitespace() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that removes all whitespace characters from a key.
keyReplaceChars(Map<Character, Character>) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that replaces all the character keys in the replacements mapping with their associated character values in each data key.
keyStripInvalidChars(Check<Character>) - Static method in class com.cinchapi.etl.Transformers
Deprecated.
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.
keyToLowerCase() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that converts all the characters in a key to lowercase.
keyValueRemoveQuotes() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that will remove single and double quotes from the beginning and end of both the key and value.
keyValueStripQuotes() - Static method in class com.cinchapi.etl.Transformers
Deprecated.
use keyValueRemoveQuotes() which has the exact same functionality
keyWhitespaceToUnderscore() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that replaces whitespace characters with an underscore in keys.

N

noOp() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that does not perform any key or value transformations.
nullSafe(Transformer) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that only attempts transformation if the value is not null.

R

removeValuesThatAre(Adjective) - Static method in class com.cinchapi.etl.Transformers
Deprecated.

T

to(String, Object) - Static method in class com.cinchapi.etl.Transformation
Return a transformation containing a single key/value pair.
to(String, Object[]) - Static method in class com.cinchapi.etl.Transformation
Return a transformation containing mapping from a single key to multiple values.
to(String, Object, Object...) - Static method in class com.cinchapi.etl.Transformation
Return a transformation containing mapping from a single key to multiple values.
transform(String, String) - Method in interface com.cinchapi.etl.Transformer
Deprecated.
in version 1.1.0; scheduled to be removed in version 2.0.0. Use Transformer.transform(String, Object) instead.
transform(Map<String, Object>) - Method in interface com.cinchapi.etl.Transformer
Transform all of the key/value pairs in the object and returned the merged result.
transform(String, Object) - Method in interface com.cinchapi.etl.Transformer
Potentially transform the provided key and value pair.
Transformation - Class in com.cinchapi.etl
Contains utility for generations Transformation that can be returned from transformers.
Transformer - Interface in com.cinchapi.etl
A Transformer is a routine that takes a key/value pair and potentially alters one or both of them, prior to import.
Transformers - Class in com.cinchapi.etl
Utilities for import Transformer objects.

V

valueAsBoolean() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, For EVERY key, transform values to a Boolean if possible.
valueAsBoolean(String...) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, for each of the keys, transform values to a Boolean if possible.
valueAsNumber() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, For EVERY key, transform values to a Number if possible.
valueAsNumber(String...) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, for each of the keys, transform values to a Number if possible.
valueAsResolvableLinkInstruction() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, For EVERY key, transform values to a resolvable link instruction if possible.
valueAsResolvableLinkInstruction(String...) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, for each of the keys, transform values to a resolvable link instruction if possible.
valueAsTag() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, For EVERY key, transform values to a Number if possible.
valueAsTag(String...) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, for each of the keys, transform values to a Tag if possible.
valueAsTimestamp() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, For EVERY key, transform values to a Timestamp if possible.
valueAsTimestamp(String...) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that, for each of the keys, transform values to a Timestamp if possible.
valueNullifyIfEmpty() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that replaces a value with null it meets the default definition of Empty.
valueNullifyIfEmpty(Empty) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that replaces a value with null it meets the provided definition of empty.
valueRemoveIf(Adjective) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that will cause a key/value pair to be "removed" if the value is described by the provided adjective.
valueRemoveIfEmpty() - Static method in class com.cinchapi.etl.Transformers
 
valueSplitOnDelimiter(char, SplitOption...) - Static method in class com.cinchapi.etl.Transformers
valueStringSplitOnDelimiter(char, SplitOption...) - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that splits a String value into multiple strings that are all mapped from the original key.
valueStringToJava() - Static method in class com.cinchapi.etl.Transformers
Return a Transformer that uses the Convert.stringToJava(String) method to convert String values to the preferred java type.
C E F K N R T V 
Skip navigation links