public abstract class AbstractCSVSpec extends Object implements Serializable
Modifier and Type | Class and Description |
---|---|
protected static class |
AbstractCSVSpec.Builder<T extends AbstractCSVSpec,B extends AbstractCSVSpec.Builder<T,B>> |
Modifier and Type | Field and Description |
---|---|
protected Boolean |
allowComments |
protected String |
anyTypeKey |
protected String |
arrayElementSeparator |
protected char |
columnSeparator |
protected Character |
escapeChar |
protected String |
lineSeparator |
protected MatchingRule |
matchingRule |
protected String |
nullValue |
protected List<String> |
provisioningActions |
protected char |
quoteChar |
protected UnmatchingRule |
unmatchingRule |
Constructor and Description |
---|
AbstractCSVSpec() |
Modifier and Type | Method and Description |
---|---|
Boolean |
getAllowComments() |
String |
getAnyTypeKey() |
String |
getArrayElementSeparator() |
char |
getColumnSeparator() |
Character |
getEscapeChar() |
String |
getLineSeparator() |
MatchingRule |
getMatchingRule() |
String |
getNullValue() |
List<String> |
getProvisioningActions() |
char |
getQuoteChar() |
UnmatchingRule |
getUnmatchingRule() |
void |
setAllowComments(boolean allowComments) |
void |
setAnyTypeKey(String anyTypeKey) |
void |
setArrayElementSeparator(String arrayElementSeparator) |
void |
setColumnSeparator(char columnSeparator) |
void |
setEscapeChar(Character escapeChar) |
void |
setLineSeparator(String lineSeparator) |
void |
setMatchingRule(MatchingRule matchingRule) |
void |
setNullValue(String nullValue) |
void |
setProvisioningActions(List<String> provisioningActions) |
void |
setQuoteChar(char quoteChar) |
void |
setUnmatchingRule(UnmatchingRule unmatchingRule) |
protected String anyTypeKey
protected char columnSeparator
protected String arrayElementSeparator
protected char quoteChar
protected Character escapeChar
protected String lineSeparator
protected String nullValue
protected Boolean allowComments
protected UnmatchingRule unmatchingRule
protected MatchingRule matchingRule
public String getAnyTypeKey()
@NotNull @QueryParam(value="anyTypeKey") public void setAnyTypeKey(String anyTypeKey)
public char getColumnSeparator()
@QueryParam(value="columnSeparator") public void setColumnSeparator(char columnSeparator)
public String getArrayElementSeparator()
@QueryParam(value="arrayElementSeparator") public void setArrayElementSeparator(String arrayElementSeparator)
public char getQuoteChar()
@QueryParam(value="quoteChar") public void setQuoteChar(char quoteChar)
public Character getEscapeChar()
@QueryParam(value="escapeChar") public void setEscapeChar(Character escapeChar)
public String getLineSeparator()
@QueryParam(value="lineSeparator") public void setLineSeparator(String lineSeparator)
public String getNullValue()
@QueryParam(value="nullValue") public void setNullValue(String nullValue)
public Boolean getAllowComments()
@QueryParam(value="allowComments") @DefaultValue(value="false") public void setAllowComments(boolean allowComments)
public UnmatchingRule getUnmatchingRule()
@QueryParam(value="unmatchingRule") public void setUnmatchingRule(UnmatchingRule unmatchingRule)
public MatchingRule getMatchingRule()
@QueryParam(value="matchingRule") public void setMatchingRule(MatchingRule matchingRule)
Copyright © 2010–2023 The Apache Software Foundation. All rights reserved.