public enum ApiQuoteFields extends Enum<ApiQuoteFields>
| Enum Constant and Description |
|---|
ALWAYS
Always use quotation marks for output fields.
|
ASNEEDED
Use quotation marks for output fields when needed.
|
| Modifier and Type | Method and Description |
|---|---|
static ApiQuoteFields |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ApiQuoteFields[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ApiQuoteFields ALWAYS
public static final ApiQuoteFields ASNEEDED
public static ApiQuoteFields[] values()
for (ApiQuoteFields c : ApiQuoteFields.values()) System.out.println(c);
public static ApiQuoteFields 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.