|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<NomeDeEventosDeTeclado> edugraf.jadix.eventos.nomes.NomeDeEventosDeTeclado
public enum NomeDeEventosDeTeclado
Enumeração que encapsula nomes de eventos relacionados a
EventoDeTeclado
Enum Constant Summary | |
---|---|
TECLA_PRESSIONADA
Nome associado a um evento emitido quando teclas sâo pressionadas enquanto o componente emissor está sob foco Componentes que emitem esse estímulo: áreaDeTexto áreaSensível (só no Internet Explorer) campoDeTexto caixaDeEscolha etiqueta (só no Internet Explorer) listaDeEscolha |
|
TECLA_REPETIDA
Nome associado a um evento emitido quando teclas sâo pressionadas enquanto o componente emissor está sob foco A diferença entre ele e o TECLA_PRESSIONADA é que esse gera continuamente eventos enquanto a tecla está pressionada. |
|
TECLA_SOLTA
Nome associado a um evento emitido quando teclas sâo soltas enquanto o componente emissor está sob foco. |
Method Summary | |
---|---|
static NomeDeEventosDeTeclado |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static NomeDeEventosDeTeclado[] |
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 |
---|
public static final NomeDeEventosDeTeclado TECLA_PRESSIONADA
public static final NomeDeEventosDeTeclado TECLA_REPETIDA
public static final NomeDeEventosDeTeclado TECLA_SOLTA
Method Detail |
---|
public static final NomeDeEventosDeTeclado[] values()
for(NomeDeEventosDeTeclado c : NomeDeEventosDeTeclado.values()) System.out.println(c);
public static NomeDeEventosDeTeclado valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified name
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |