All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.datavec.api.transform.StringReduceOp Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.datavec.api.transform;

/**
 * A string reduce op is used for combining strings such as
 * merging, appending, or prepending.
 *
 * The following ops are supported:
 * PREPEND: prepend the first string to the second
 * APPEND: append the first string to the second
 * MERGE: Merge the 2 strings
 * FORMAT: Apply the format (the first column, to the string separated list via csv)
 * @author Adam Gibson
 */
public enum StringReduceOp {
    PREPEND, APPEND, MERGE, REPLACE
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy