gate.jape.functest
Enum TransducerType

java.lang.Object
  extended by java.lang.Enum<TransducerType>
      extended by gate.jape.functest.TransducerType
All Implemented Interfaces:
Serializable, Comparable<TransducerType>

public enum TransducerType
extends Enum<TransducerType>


Enum Constant Summary
CLASSIC
           
PDA
           
PDAPLUS
           
PLUS
           
 
Method Summary
 String getFqdnClass()
           
 File getPlugInDir()
           
static TransducerType valueOf(String name)
          Returns the enum constant of this type with the specified name.
static TransducerType[] 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

CLASSIC

public static final TransducerType CLASSIC

PDA

public static final TransducerType PDA

PLUS

public static final TransducerType PLUS

PDAPLUS

public static final TransducerType PDAPLUS
Method Detail

values

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

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

valueOf

public static TransducerType 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

getFqdnClass

public String getFqdnClass()

getPlugInDir

public File getPlugInDir()