pt.uminho.anote2.process.IE.re.clue
Enum VerbTenseEnum

java.lang.Object
  extended by java.lang.Enum<VerbTenseEnum>
      extended by pt.uminho.anote2.process.IE.re.clue.VerbTenseEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<VerbTenseEnum>

public enum VerbTenseEnum
extends java.lang.Enum<VerbTenseEnum>

Author:
Hugo Costa To Save verb Information

Enum Constant Summary
INFINITIVE
           
NONE
           
PAST_CONTINOUS
           
PAST_PERFECT
           
PRESENT_CONTINUOS
           
PRESENT_PERFECT
           
PRESENT_PERFECT_CONTINOUS
           
SIMPLE_PAST
           
SIMPLE_PRESENT
           
 
Method Summary
static VerbTenseEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static VerbTenseEnum[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

NONE

public static final VerbTenseEnum NONE

SIMPLE_PRESENT

public static final VerbTenseEnum SIMPLE_PRESENT

PRESENT_CONTINUOS

public static final VerbTenseEnum PRESENT_CONTINUOS

PRESENT_PERFECT

public static final VerbTenseEnum PRESENT_PERFECT

PRESENT_PERFECT_CONTINOUS

public static final VerbTenseEnum PRESENT_PERFECT_CONTINOUS

SIMPLE_PAST

public static final VerbTenseEnum SIMPLE_PAST

PAST_CONTINOUS

public static final VerbTenseEnum PAST_CONTINOUS

PAST_PERFECT

public static final VerbTenseEnum PAST_PERFECT

INFINITIVE

public static final VerbTenseEnum INFINITIVE
Method Detail

values

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

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

valueOf

public static VerbTenseEnum 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
java.lang.NullPointerException - if the argument is null