public enum BorderEffect extends java.lang.Enum<BorderEffect>
Enum Constant and Description |
---|
DARK
Apply dark color to the border using the series/points color.
|
LIGHT
Apply light color to the border using the series/points color.
|
NONE
No border effect is applied.
|
OPPOSITE
Chooses between dark and light border depending on the object color.
|
RAISED
The border has raised inner and outer edges.
|
SHADOW
The border will have shadow.
|
Modifier and Type | Method and Description |
---|---|
int |
getUnderlyingValue()
Returns a numeric value that represents the given com.softwarefx.chartfx.server.BorderEffect.
|
static BorderEffect |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BorderEffect[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BorderEffect NONE
public static final BorderEffect RAISED
public static final BorderEffect LIGHT
public static final BorderEffect DARK
public static final BorderEffect OPPOSITE
public static final BorderEffect SHADOW
public static BorderEffect[] values()
for (BorderEffect c : BorderEffect.values()) System.out.println(c);
public static BorderEffect 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.BorderEffect.
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.