Chart FX 7 for Java Desktop

com.softwarefx.chartfx.desktop
Enum Gallery

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

public enum Gallery
extends Enum<Gallery>

Gallery types


Enum Constant Summary
AREA
           
BAR
           
BUBBLE
           
CANDLESTICK
           
CONTOUR
           
CUBE
           
CURVE
           
CURVE_AREA
           
DOUGHNUT
           
GANTT
           
HIGH_LOW_CLOSE
           
LINES
           
NONE
          None
OPEN_HIGH_LOW_CLOSE
           
PARETO
           
PIE
           
POLAR
           
PYRAMID
           
RADAR
           
SCATTER
           
STEP
           
SURFACE
           
 
Method Summary
static EnumSet<Gallery> getEnumSetValue(int value)
          Returns a EnumSet that represents the given numeric value.
static Gallery getEnumValue(int value)
          Returns a Enum Item that represents the given numeric value.
static int getUnderlyingValue(EnumSet<Gallery> value)
          Returns a numeric value that represents the given EnumSet or Enum item.
static int getUnderlyingValue(Gallery value)
          Returns a numeric value that represents the given EnumSet or Enum item.
static Gallery valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Gallery[] 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

NONE

public static final Gallery NONE
None


LINES

public static final Gallery LINES

BAR

public static final Gallery BAR

AREA

public static final Gallery AREA

SCATTER

public static final Gallery SCATTER

PIE

public static final Gallery PIE

STEP

public static final Gallery STEP

HIGH_LOW_CLOSE

public static final Gallery HIGH_LOW_CLOSE

RADAR

public static final Gallery RADAR

POLAR

public static final Gallery POLAR

CUBE

public static final Gallery CUBE

BUBBLE

public static final Gallery BUBBLE

OPEN_HIGH_LOW_CLOSE

public static final Gallery OPEN_HIGH_LOW_CLOSE

CANDLESTICK

public static final Gallery CANDLESTICK

GANTT

public static final Gallery GANTT

CURVE

public static final Gallery CURVE

PARETO

public static final Gallery PARETO

SURFACE

public static final Gallery SURFACE

DOUGHNUT

public static final Gallery DOUGHNUT

PYRAMID

public static final Gallery PYRAMID

CONTOUR

public static final Gallery CONTOUR

CURVE_AREA

public static final Gallery CURVE_AREA
Method Detail

values

public static Gallery[] 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 (Gallery c : Gallery.values())
    System.out.println(c);

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

valueOf

public static Gallery 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<Gallery> getEnumSetValue(int value)

Returns a EnumSet that represents the given numeric value.

Parameters:
value - numeric representation of the Enumset.

getEnumValue

public static Gallery 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(Gallery 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<Gallery> 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.