edugraf.jadix.eventos.nomes
Enum NomeDeEventosDeAreaSensivel

java.lang.Object
  extended by java.lang.Enum<NomeDeEventosDeAreaSensivel>
      extended by edugraf.jadix.eventos.nomes.NomeDeEventosDeAreaSensivel
All Implemented Interfaces:
NomeDeEventosDix, java.io.Serializable, java.lang.Comparable<NomeDeEventosDeAreaSensivel>

public enum NomeDeEventosDeAreaSensivel
extends java.lang.Enum<NomeDeEventosDeAreaSensivel>
implements NomeDeEventosDix

Enumeração que encapsula nomes de eventos relacionados a EventoDeAreaSensivel


Enum Constant Summary
CURSOR_APONTOU
          Nome associado a um evento emitido quando clica-se em uma áreaSensível.
CURSOR_ARRASTOU
          Nome associado a um evento emitido quando o cursor do mouse é arrastado sobre um componente Componentes que emitem esse estímulo: áreaSensível
CURSOR_MOVEU
          Nome associado a um evento emitido quando o cursor do mouse é movimentado sobre um componente.
 
Method Summary
static NomeDeEventosDeAreaSensivel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static NomeDeEventosDeAreaSensivel[] values()
          Returns an array containing the constants of this enum type, in the order they're 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

CURSOR_MOVEU

public static final NomeDeEventosDeAreaSensivel CURSOR_MOVEU
Nome associado a um evento emitido quando o cursor do mouse é movimentado sobre um componente. Componentes que emitem esse estímulo:


CURSOR_APONTOU

public static final NomeDeEventosDeAreaSensivel CURSOR_APONTOU
Nome associado a um evento emitido quando clica-se em uma áreaSensível. Componentes que emitem esse estímulo:


CURSOR_ARRASTOU

public static final NomeDeEventosDeAreaSensivel CURSOR_ARRASTOU
Nome associado a um evento emitido quando o cursor do mouse é arrastado sobre um componente Componentes que emitem esse estímulo:

Method Detail

values

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

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

valueOf

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