public static enum FileExportOptions.JavaScriptExportQuotes extends Enum<FileExportOptions.JavaScriptExportQuotes>
exportQuotes JavaScript export
options.| Enum Constant and Description |
|---|
DOUBLE
Output will be enclosed in double quotes
|
SINGLE
Default Output will be enclosed in single quotes
|
| Modifier and Type | Method and Description |
|---|---|
static FileExportOptions.JavaScriptExportQuotes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileExportOptions.JavaScriptExportQuotes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="single") public static final FileExportOptions.JavaScriptExportQuotes SINGLE
@SerializedName(value="double") public static final FileExportOptions.JavaScriptExportQuotes DOUBLE
public static FileExportOptions.JavaScriptExportQuotes[] values()
for (FileExportOptions.JavaScriptExportQuotes c : FileExportOptions.JavaScriptExportQuotes.values()) System.out.println(c);
public static FileExportOptions.JavaScriptExportQuotes 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 © 2024. All rights reserved.