|
Chart FX 7 for Java Server | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Shadow>
com.softwarefx.chartfx.server.Shadow
public enum Shadow
Define light setting for a 3D chart.
Enum Constant Summary | |
---|---|
FIXED
Sets the standard shading for crevasses exposed in 3D charts. |
|
NONE
Removes all shading features. |
|
REALISTIC
ChartFX for Java adjusts the shading depending on the angle and rotation settings. |
Method Summary | |
---|---|
static EnumSet<Shadow> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static Shadow |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(EnumSet<Shadow> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(Shadow value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static Shadow |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Shadow[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Shadow NONE
public static final Shadow FIXED
public static final Shadow REALISTIC
Method Detail |
---|
public static Shadow[] values()
for (Shadow c : Shadow.values()) System.out.println(c);
public static Shadow valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic static EnumSet<Shadow> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static Shadow getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(Shadow value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<Shadow> value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.
|
http://www.softwarefx.com | |||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |