org.graphstream.algorithm.measure
Enum ChartMeasure.PlotOutputType
java.lang.Object
java.lang.Enum<ChartMeasure.PlotOutputType>
org.graphstream.algorithm.measure.ChartMeasure.PlotOutputType
- All Implemented Interfaces:
- Serializable, Comparable<ChartMeasure.PlotOutputType>
- Enclosing class:
- ChartMeasure
public static enum ChartMeasure.PlotOutputType
- extends Enum<ChartMeasure.PlotOutputType>
Defines the support used for rendering : on screen or in a file.
SCREEN
public static final ChartMeasure.PlotOutputType SCREEN
PNG
public static final ChartMeasure.PlotOutputType PNG
JPEG
public static final ChartMeasure.PlotOutputType JPEG
values
public static ChartMeasure.PlotOutputType[] 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.PlotOutputType c : ChartMeasure.PlotOutputType.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.PlotOutputType 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.