Enum SimuComAnalysisResult.TimeseriesData
- java.lang.Object
-
- java.lang.Enum<SimuComAnalysisResult.TimeseriesData>
-
- de.uka.ipd.sdq.dsexplore.analysis.simucom.SimuComAnalysisResult.TimeseriesData
-
- All Implemented Interfaces:
Serializable
,Comparable<SimuComAnalysisResult.TimeseriesData>
- Enclosing class:
- SimuComAnalysisResult
protected static enum SimuComAnalysisResult.TimeseriesData extends Enum<SimuComAnalysisResult.TimeseriesData>
Identifier for subsets of data elements that belong to a single time series element. Copied from de.uka.ipd.sdq.sensorframework.visualisation.rvisualisation.reports.RReport, will copy instead of import to not get a dependency on an R dependent plugin.- See Also:
TimeSeries
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SimuComAnalysisResult.TimeseriesData
valueOf(String name)
Returns the enum constant of this type with the specified name.static SimuComAnalysisResult.TimeseriesData[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TIMESPAN
public static final SimuComAnalysisResult.TimeseriesData TIMESPAN
The timespan value of the time series data point.
-
EVENTTIME
public static final SimuComAnalysisResult.TimeseriesData EVENTTIME
The eventtime value of the time series data point.
-
BOTH
public static final SimuComAnalysisResult.TimeseriesData BOTH
Both, the timespan and eventtime, of the time series data point.
-
-
Method Detail
-
values
public static SimuComAnalysisResult.TimeseriesData[] 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 (SimuComAnalysisResult.TimeseriesData c : SimuComAnalysisResult.TimeseriesData.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SimuComAnalysisResult.TimeseriesData 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 nameNullPointerException
- if the argument is null
-
-