Chart FX 7 for Java Server

com.softwarefx.chartfx.server
Enum AllowChanges

java.lang.Object
  extended by java.lang.Enum<AllowChanges>
      extended by com.softwarefx.chartfx.server.AllowChanges
All Implemented Interfaces:
Serializable, Comparable<AllowChanges>

public enum AllowChanges
extends 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

ALLOW_DRAG

public static final AllowChanges ALLOW_DRAG
See AllowDrag.


AXIS_STEP

public static final AllowChanges AXIS_STEP
Allows the end user to change major and minor steps in any of the axis.


GLOBAL_GALLERY

public static final AllowChanges GLOBAL_GALLERY
Allows the end user to see and change the chart gallery.


SERIES_GALLERY

public static final AllowChanges SERIES_GALLERY
Allows the end user to see and change the gallery of each series.


VIEW_3D

public static final AllowChanges VIEW_3D
This will permit the end user to switch to 3D view for any type of chart that is being displayed in 2D.


AXIS_SCALE

public static final AllowChanges AXIS_SCALE
This will permit the end user to change scale used on the Y-axis from the options dialog.


TITLES

public static final AllowChanges TITLES
This will permit the end user to change the text being assigned to the different titles supported (Top, Bottom, Right or Left).


FONTS

public static final AllowChanges FONTS
This will permit the end user to change the fonts used in any of the titles supported.


PRINT

public static final AllowChanges PRINT
This will permit the end user to print the contents of the chart window.


ROTATE

public static final AllowChanges ROTATE
This will permit the end user to rotate the chart.


CLIPBOARD

public static final AllowChanges CLIPBOARD
This will permit the end user to copy bitmap or data of actual chart to the clipboard.


LOGARITHMIC_SCALE

public static final AllowChanges LOGARITHMIC_SCALE
This will permit the end user to change the Logarithmic Scale settings.


RESIZE_PANES

public static final AllowChanges RESIZE_PANES
This will permit the end user to resize chart panes.


DEFAULT

public static final AllowChanges DEFAULT
This will grant the user to have default access to the chart functions.


ALL

public static final AllowChanges ALL
This will permit the end user to access all the functions.

Method Detail

values

public static AllowChanges[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (AllowChanges c : AllowChanges.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static AllowChanges valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null

getEnumSetValue

public static EnumSet<AllowChanges> getEnumSetValue(int value)

Returns a EnumSet that represents the given numeric value.

Parameters:
value - numeric representation of the Enumset.

getEnumValue

public static AllowChanges getEnumValue(int value)

Returns a Enum Item that represents the given numeric value.

Parameters:
value - numeric representation of the Enum item.

getUnderlyingValue

public static int getUnderlyingValue(AllowChanges value)

Returns a numeric value that represents the given EnumSet or Enum item.

Parameters:
value - A Enum Item or EnumSet.

getUnderlyingValue

public static int getUnderlyingValue(EnumSet<AllowChanges> value)

Returns a numeric value that represents the given EnumSet or Enum item.

Parameters:
value - A Enum Item or EnumSet.

http://www.softwarefx.com

2008 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.