public static enum PropertiesList.ParsingMode extends java.lang.Enum<PropertiesList.ParsingMode>
Enum Constant and Description |
---|
MULTI_LINE_DELIMETER |
NEW_LINE_DELIMITER |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCommentStr() |
java.lang.String |
getItemDelim() |
boolean |
isIncludeNewLine() |
void |
setCommentStr(java.lang.String commentStr) |
void |
setIncludeNewLine(boolean includeNewLine) |
void |
setItemDelim(java.lang.String itemDelim) |
static PropertiesList.ParsingMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PropertiesList.ParsingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertiesList.ParsingMode NEW_LINE_DELIMITER
public static final PropertiesList.ParsingMode MULTI_LINE_DELIMETER
public static PropertiesList.ParsingMode[] values()
for (PropertiesList.ParsingMode c : PropertiesList.ParsingMode.values()) System.out.println(c);
public static PropertiesList.ParsingMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getItemDelim()
public boolean isIncludeNewLine()
public void setIncludeNewLine(boolean includeNewLine)
public void setItemDelim(java.lang.String itemDelim)
public java.lang.String getCommentStr()
public void setCommentStr(java.lang.String commentStr)