public enum CommentStrategy extends java.lang.Enum<CommentStrategy>
| Enum Constant and Description |
|---|
NONE
Don't detect comments - handle everything as regular cell content.
|
READ
Detect and return the commented lines (entire line as one field).
|
SKIP
Detect comments but do not return commented lines.
|
| Modifier and Type | Method and Description |
|---|---|
static CommentStrategy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static CommentStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CommentStrategy NONE
public static final CommentStrategy SKIP
public static final CommentStrategy READ
public static CommentStrategy[] values()
for (CommentStrategy c : CommentStrategy.values()) System.out.println(c);
public static CommentStrategy 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 null