de.bsvrz.pua.prot.util
Enum ExpressionResult.ResultType

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

public static enum ExpressionResult.ResultType
extends java.lang.Enum<ExpressionResult.ResultType>

Typ der Werte in ExpressionResult.

Author:
beck et al. projects GmbH, Martin Hilgers

Enum Constant Summary
BOOL
          Bool
DOUBLE
          Double
ERROR
          Ungültiger Wert
LONG
          Long
NONE
          Kein Wert hinterlegt
STRING
          String
 
Method Summary
static ExpressionResult.ResultType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExpressionResult.ResultType[] 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

BOOL

public static final ExpressionResult.ResultType BOOL
Bool


STRING

public static final ExpressionResult.ResultType STRING
String


LONG

public static final ExpressionResult.ResultType LONG
Long


DOUBLE

public static final ExpressionResult.ResultType DOUBLE
Double


ERROR

public static final ExpressionResult.ResultType ERROR
Ungültiger Wert


NONE

public static final ExpressionResult.ResultType NONE
Kein Wert hinterlegt

Method Detail

values

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

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

valueOf

public static ExpressionResult.ResultType 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.