Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-02


com.sigmadynamics.server.rtis.PredictionEngine
Enum ModelError

java.lang.Object
  extended by java.lang.Enum<ModelError>
      extended by com.sigmadynamics.server.rtis.PredictionEngine.ModelError

All Implemented Interfaces:
java.lang.Comparable<ModelError>

public enum ModelError
extends java.lang.Enum<ModelError>

Enum Constant Summary
MAE
          mean absolute error
ME
          mean error
MSE
          mean square error
REL_MAE
          relative MAE
REL_ME
          relative ME
REL_MSE
          relative MSE
REL_RMSE
          relative RMSE
RMSE
          root mean square error

 

Method Summary
static ModelError valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ModelError[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

Enum Constant Detail

MSE

public static final ModelError MSE
mean square error

REL_MSE

public static final ModelError REL_MSE
relative MSE

RMSE

public static final ModelError RMSE
root mean square error

REL_RMSE

public static final ModelError REL_RMSE
relative RMSE

MAE

public static final ModelError MAE
mean absolute error

REL_MAE

public static final ModelError REL_MAE
relative MAE

ME

public static final ModelError ME
mean error

REL_ME

public static final ModelError REL_ME
relative ME

Method Detail

values

public static ModelError[] 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 (ModelError c : ModelError.values())
    System.out.println(c);
Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ModelError valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

Skip navigation links

Oracle Fusion Middleware Java API Reference for Oracle Real-Time Decisions
11g Release 1 (11.1.1)

E17787-02


Copyright © 2010, 2011, Oracle. All rights reserved.