public enum PaintStyles extends java.lang.Enum<PaintStyles>
Enum Constant and Description |
---|
BACKGROUND
Includes the background.
|
BORDER
Will paint the borders.
|
METAFILE
Used when the Graphics Object is a Metafile type.
|
NONE
Uses normal drawing rules.
|
PRINT
Rescales chart to use printer margins and printer resolution.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.PaintStyles.
|
static int |
getUnderlyingValue(java.util.EnumSet<PaintStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.PaintStyles.
|
static PaintStyles |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaintStyles[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaintStyles NONE
public static final PaintStyles BACKGROUND
public static final PaintStyles BORDER
public static final PaintStyles METAFILE
public static final PaintStyles PRINT
public static PaintStyles[] values()
for (PaintStyles c : PaintStyles.values()) System.out.println(c);
public static PaintStyles 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.PaintStyles.
public static int getUnderlyingValue(java.util.EnumSet<PaintStyles> value)
Returns a numeric value that represents the given com.softwarefx.chartfx.server.PaintStyles.
value
- A Enum Item.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.