io.atlasmap.v2.Split Maven / Gradle / Ivy
package io.atlasmap.v2;
import java.io.Serializable;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
public class Split extends Action implements Serializable {
private static final long serialVersionUID = 1L;
protected String delimiter;
/**
* Gets the value of the delimiter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDelimiter() {
return delimiter;
}
/**
* Sets the value of the delimiter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
@JsonPropertyDescription("The delimiter string to split with")
@AtlasActionProperty(title = "Delimiter", type = FieldType.STRING)
public void setDelimiter(String value) {
this.delimiter = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy