de.bsvrz.pua.prot.util
Enum ResultValue.ResultValueOperation

java.lang.Object
  extended by java.lang.Enum<ResultValue.ResultValueOperation>
      extended by de.bsvrz.pua.prot.util.ResultValue.ResultValueOperation
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResultValue.ResultValueOperation>
Enclosing class:
ResultValue

public static enum ResultValue.ResultValueOperation
extends java.lang.Enum<ResultValue.ResultValueOperation>

Operationen die auf ResultValue Objekten durchgeführt werden können.

Author:
beck et al. projects GmbH, Martin Hilgers

Enum Constant Summary
DIV
          Division
MINUS
          Subtraktion
MULT
          Multiplikation
PLUS
          Addition
 
Method Summary
static ResultValue.ResultValueOperation valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ResultValue.ResultValueOperation[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PLUS

public static final ResultValue.ResultValueOperation PLUS
Addition


MULT

public static final ResultValue.ResultValueOperation MULT
Multiplikation


DIV

public static final ResultValue.ResultValueOperation DIV
Division


MINUS

public static final ResultValue.ResultValueOperation MINUS
Subtraktion

Method Detail

values

public static final ResultValue.ResultValueOperation[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(ResultValue.ResultValueOperation c : ResultValue.ResultValueOperation.values())
        System.out.println(c);

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

valueOf

public static ResultValue.ResultValueOperation 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


Copyright © 2005-2008 beck et al. projects GmbH All Rights Reserved.