de.bsvrz.pua.prot.util
Enum ExpressionLeaf.LeafType

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

public static enum ExpressionLeaf.LeafType
extends java.lang.Enum<ExpressionLeaf.LeafType>

Typ, der in diesem Blatt gespeichert wird.


Enum Constant Summary
ATTRIBUTE
          Wert ist ein Attribut
BOOL
          Wert ist ein Bool
DOUBLE
          Wert ist ein Double
FUNCTION
          Wert ist eine Funktion
LONG
          Wert ist ein Long
STRING
          Wert ist ein String
 
Method Summary
static ExpressionLeaf.LeafType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ExpressionLeaf.LeafType[] 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

STRING

public static final ExpressionLeaf.LeafType STRING
Wert ist ein String


DOUBLE

public static final ExpressionLeaf.LeafType DOUBLE
Wert ist ein Double


LONG

public static final ExpressionLeaf.LeafType LONG
Wert ist ein Long


ATTRIBUTE

public static final ExpressionLeaf.LeafType ATTRIBUTE
Wert ist ein Attribut


BOOL

public static final ExpressionLeaf.LeafType BOOL
Wert ist ein Bool


FUNCTION

public static final ExpressionLeaf.LeafType FUNCTION
Wert ist eine Funktion

Method Detail

values

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

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

valueOf

public static ExpressionLeaf.LeafType 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.