|
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<AllowChanges>
com.softwarefx.chartfx.server.AllowChanges
public enum AllowChanges
Define end user access to several functions provided through the Chart FX end user interface.
Enum Constant Summary | |
---|---|
ALL
This will permit the end user to access all the functions. |
|
ALLOW_DRAG
See AllowDrag. |
|
AXIS_SCALE
This will permit the end user to change scale used on the Y-axis from the options dialog. |
|
AXIS_STEP
Allows the end user to change major and minor steps in any of the axis. |
|
CLIPBOARD
This will permit the end user to copy bitmap or data of actual chart to the clipboard. |
|
DEFAULT
This will grant the user to have default access to the chart functions. |
|
FONTS
This will permit the end user to change the fonts used in any of the titles supported. |
|
GLOBAL_GALLERY
Allows the end user to see and change the chart gallery. |
|
LOGARITHMIC_SCALE
This will permit the end user to change the Logarithmic Scale settings. |
|
PRINT
This will permit the end user to print the contents of the chart window. |
|
RESIZE_PANES
This will permit the end user to resize chart panes. |
|
ROTATE
This will permit the end user to rotate the chart. |
|
SERIES_GALLERY
Allows the end user to see and change the gallery of each series. |
|
TITLES
This will permit the end user to change the text being assigned to the different titles supported (Top, Bottom, Right or Left). |
|
VIEW_3D
This will permit the end user to switch to 3D view for any type of chart that is being displayed in 2D. |
Method Summary | |
---|---|
static EnumSet<AllowChanges> |
getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value. |
static AllowChanges |
getEnumValue(int value)
Returns a Enum Item that represents the given numeric value. |
static int |
getUnderlyingValue(AllowChanges value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static int |
getUnderlyingValue(EnumSet<AllowChanges> value)
Returns a numeric value that represents the given EnumSet or Enum item. |
static AllowChanges |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static AllowChanges[] |
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 AllowChanges ALLOW_DRAG
public static final AllowChanges AXIS_STEP
public static final AllowChanges GLOBAL_GALLERY
public static final AllowChanges SERIES_GALLERY
public static final AllowChanges VIEW_3D
public static final AllowChanges AXIS_SCALE
public static final AllowChanges TITLES
public static final AllowChanges FONTS
public static final AllowChanges PRINT
public static final AllowChanges ROTATE
public static final AllowChanges CLIPBOARD
public static final AllowChanges LOGARITHMIC_SCALE
public static final AllowChanges RESIZE_PANES
public static final AllowChanges DEFAULT
public static final AllowChanges ALL
Method Detail |
---|
public static AllowChanges[] values()
for (AllowChanges c : AllowChanges.values()) System.out.println(c);
public static AllowChanges 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<AllowChanges> getEnumSetValue(int value)
Returns a EnumSet that represents the given numeric value.
value
- numeric representation of the Enumset.public static AllowChanges getEnumValue(int value)
Returns a Enum Item that represents the given numeric value.
value
- numeric representation of the Enum item.public static int getUnderlyingValue(AllowChanges value)
Returns a numeric value that represents the given EnumSet or Enum item.
value
- A Enum Item or EnumSet.public static int getUnderlyingValue(EnumSet<AllowChanges> 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 |