org.ojalgo.chart
Enum Type

java.lang.Object
  extended by java.lang.Enum<Type>
      extended by org.ojalgo.chart.Type
All Implemented Interfaces:
Serializable, Comparable<Type>

Deprecated. v30 Bad idea. It's going away.

public enum Type
extends Enum<Type>

Author:
apete

Enum Constant Summary
AreaChart
          Deprecated.  
BarChart
          Deprecated.  
BarChart3D
          Deprecated.  
Histogram
          Deprecated.  
LineChart
          Deprecated.  
LineChart3D
          Deprecated.  
MultiplePieChart
          Deprecated.  
MultiplePieChart3D
          Deprecated.  
PieChart
          Deprecated.  
PieChart3D
          Deprecated.  
PolarChart
          Deprecated.  
RingChart
          Deprecated.  
ScatterPlot
          Deprecated.  
StackedAreaChart
          Deprecated.  
StackedAreaXYChart
          Deprecated.  
StackedBarChart
          Deprecated.  
StackedBarChart3D
          Deprecated.  
TimeSeriesChart
          Deprecated.  
WaterfallChart
          Deprecated.  
XYAreaChart
          Deprecated.  
XYBarChart
          Deprecated.  
XYLineChart
          Deprecated.  
XYStepAreaChart
          Deprecated.  
XYStepChart
          Deprecated.  
 
Method Summary
static Type valueOf(String name)
          Deprecated. Returns the enum constant of this type with the specified name.
static Type[] values()
          Deprecated. 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

AreaChart

public static final Type AreaChart
Deprecated. 

BarChart

public static final Type BarChart
Deprecated. 

BarChart3D

public static final Type BarChart3D
Deprecated. 

Histogram

public static final Type Histogram
Deprecated. 

LineChart

public static final Type LineChart
Deprecated. 

LineChart3D

public static final Type LineChart3D
Deprecated. 

MultiplePieChart

public static final Type MultiplePieChart
Deprecated. 

MultiplePieChart3D

public static final Type MultiplePieChart3D
Deprecated. 

PieChart

public static final Type PieChart
Deprecated. 

PieChart3D

public static final Type PieChart3D
Deprecated. 

PolarChart

public static final Type PolarChart
Deprecated. 

RingChart

public static final Type RingChart
Deprecated. 

ScatterPlot

public static final Type ScatterPlot
Deprecated. 

StackedAreaChart

public static final Type StackedAreaChart
Deprecated. 

StackedAreaXYChart

public static final Type StackedAreaXYChart
Deprecated. 

StackedBarChart

public static final Type StackedBarChart
Deprecated. 

StackedBarChart3D

public static final Type StackedBarChart3D
Deprecated. 

TimeSeriesChart

public static final Type TimeSeriesChart
Deprecated. 

WaterfallChart

public static final Type WaterfallChart
Deprecated. 

XYAreaChart

public static final Type XYAreaChart
Deprecated. 

XYBarChart

public static final Type XYBarChart
Deprecated. 

XYLineChart

public static final Type XYLineChart
Deprecated. 

XYStepAreaChart

public static final Type XYStepAreaChart
Deprecated. 

XYStepChart

public static final Type XYStepChart
Deprecated. 
Method Detail

values

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

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

valueOf

public static Type valueOf(String name)
Deprecated. 
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