jaitools.jiffle.parser
Enum SymbolType

java.lang.Object
  extended by java.lang.Enum<SymbolType>
      extended by jaitools.jiffle.parser.SymbolType
All Implemented Interfaces:
Serializable, Comparable<SymbolType>

public enum SymbolType
extends Enum<SymbolType>

Constants representing the type of symbols tracked through scopes during JIffle script compilation.

Since:
1.1
Version:
$Id: SymbolType.java 1505 2011-03-05 11:37:43Z michael.bedward $
Author:
Michael Bedward

Enum Constant Summary
LIST
          A list variable.
LOOP_VAR
          A foreach loop variable.
SCALAR
          General scalar user variable.
 
Method Summary
 String getDesc()
          Gets the description of this type.
 String toString()
           
static SymbolType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SymbolType[] 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, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

SCALAR

public static final SymbolType SCALAR
General scalar user variable.


LOOP_VAR

public static final SymbolType LOOP_VAR
A foreach loop variable.


LIST

public static final SymbolType LIST
A list variable.

Method Detail

values

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

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

valueOf

public static SymbolType 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 name
NullPointerException - if the argument is null

getDesc

public String getDesc()
Gets the description of this type.

Returns:
the description

toString

public String toString()
Overrides:
toString in class Enum<SymbolType>


Copyright © 2009-2011. All Rights Reserved.