public enum ApiFileHeaderInfo extends Enum<ApiFileHeaderInfo>
| Enum Constant and Description |
|---|
IGNORE
First line is a header, but you can't use the header values to indicate the column in an expression.
|
NONE
First line is not a header.
|
USE
First line is a header, and you can use the header value to identify a column in an expression (SELECT "name" FROM OBJECT).
|
| Modifier and Type | Method and Description |
|---|---|
static ApiFileHeaderInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiFileHeaderInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiFileHeaderInfo USE
public static final ApiFileHeaderInfo IGNORE
public static final ApiFileHeaderInfo NONE
public static ApiFileHeaderInfo[] values()
for (ApiFileHeaderInfo c : ApiFileHeaderInfo.values()) System.out.println(c);
public static ApiFileHeaderInfo valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 MuleSoft, Inc.. All rights reserved.