argutia.events
Enum ComputationEvent.Type

java.lang.Object
  extended by java.lang.Enum<ComputationEvent.Type>
      extended by argutia.events.ComputationEvent.Type
All Implemented Interfaces:
Serializable, Comparable<ComputationEvent.Type>
Enclosing class:
ComputationEvent
public static enum ComputationEvent.Type
extends Enum<ComputationEvent.Type>

Types possibles de l'événement.

Author:
Geoffroy AUBRY
See Also:
ComputationEvent.getType()
Enum Constant Summary
ARGUMENTS_DONE
          Calcul des arguments effectué.
ARGUMENTS_IN_PROGRESS
          Calcul des arguments en cours.
SITUATION_DONE
          Calcul des attitudes effectué.
SITUATION_IN_PROGRESS
          Calcul des attitudes en cours.
SYNTAX_DONE
          Analyse syntaxique effectuée.
SYNTAX_IN_PROGRESS
          Analyse syntaxique en cours.
 
Method Summary
static ComputationEvent.Type valueOf(String name)
          Returns the enum constant of this type with the specified name.
static ComputationEvent.Type[] 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

ARGUMENTS_DONE

public static final ComputationEvent.Type ARGUMENTS_DONE
Calcul des arguments effectué.

See Also:
Situation.calculerArguments()

ARGUMENTS_IN_PROGRESS

public static final ComputationEvent.Type ARGUMENTS_IN_PROGRESS
Calcul des arguments en cours.

See Also:
Situation.calculerArguments()

SITUATION_DONE

public static final ComputationEvent.Type SITUATION_DONE
Calcul des attitudes effectué.

See Also:
Situation.calculerAttitudes()

SITUATION_IN_PROGRESS

public static final ComputationEvent.Type SITUATION_IN_PROGRESS
Calcul des attitudes en cours.

See Also:
Situation.calculerAttitudes()

SYNTAX_DONE

public static final ComputationEvent.Type SYNTAX_DONE
Analyse syntaxique effectuée.

See Also:
Onglets.getAnalyseSyntaxiqueSituation()

SYNTAX_IN_PROGRESS

public static final ComputationEvent.Type SYNTAX_IN_PROGRESS
Analyse syntaxique en cours.

See Also:
Onglets.getAnalyseSyntaxiqueSituation()
Method Detail

values

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

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

valueOf

public static ComputationEvent.Type 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
Argutia JavaDoc
23 décembre 2007