public enum FileFormat extends java.lang.Enum<FileFormat>
Enum Constant and Description |
---|
BINARY
Binary
|
BINARY_TEMPLATE
Binary file with 'Template' FileMask pre-assigned
|
BITMAP
Bitmap
|
EXTERNAL
Reads the sting (file extension) from the ImgTags property and uses an image writer to generate a chart in the configured format.
|
JPEG
Jpeg (Only supported with Internet control)
|
METAFILE
Metafile
|
PNG
Png (Only supported with Internet control)
|
SVG
Svg
|
TEXT
Text File
|
XML
Description goes here
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.FileFormat.
|
static FileFormat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileFormat BINARY
public static final FileFormat BINARY_TEMPLATE
public static final FileFormat XML
public static final FileFormat TEXT
public static final FileFormat BITMAP
public static final FileFormat METAFILE
public static final FileFormat JPEG
public static final FileFormat PNG
public static final FileFormat EXTERNAL
public static final FileFormat SVG
public static FileFormat[] values()
for (FileFormat c : FileFormat.values()) System.out.println(c);
public static FileFormat 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 int getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.FileFormat.
2014 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
All other names are trademarks or registered trademarks of their respective owners.