org.graphstream.algorithm.measure
Enum ChartMeasure.PlotType

java.lang.Object
  extended by java.lang.Enum<ChartMeasure.PlotType>
      extended by org.graphstream.algorithm.measure.ChartMeasure.PlotType
All Implemented Interfaces:
Serializable, Comparable<ChartMeasure.PlotType>
Enclosing class:
ChartMeasure

public static enum ChartMeasure.PlotType
extends Enum<ChartMeasure.PlotType>

Type of plot.s


Enum Constant Summary
BAR
           
LINE
          Points connected with lines.
PIE
           
SCATTER
          Cloud of points.
 
Method Summary
static ChartMeasure.PlotType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ChartMeasure.PlotType[] 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

LINE

public static final ChartMeasure.PlotType LINE
Points connected with lines.


BAR

public static final ChartMeasure.PlotType BAR

PIE

public static final ChartMeasure.PlotType PIE

SCATTER

public static final ChartMeasure.PlotType SCATTER
Cloud of points.

Method Detail

values

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

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

valueOf

public static ChartMeasure.PlotType 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


Copyright © 2013. All Rights Reserved.