edugraf.jadix.eventos.nomes
Enum NomeDeEventosDeSeleção
java.lang.Object
java.lang.Enum<NomeDeEventosDeSeleção>
edugraf.jadix.eventos.nomes.NomeDeEventosDeSeleção
- All Implemented Interfaces:
- NomeDeEventosDix, java.io.Serializable, java.lang.Comparable<NomeDeEventosDeSeleção>
public enum NomeDeEventosDeSeleção
- extends java.lang.Enum<NomeDeEventosDeSeleção>
- implements NomeDeEventosDix
Enumeração que encapsula nomes de eventos relacionados a
EventoDeSelecao
Enum Constant Summary |
SELECIONADO
Nome associado a um evento emitido quando modifica-se a opção selecionada
de um componente selecionável. |
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 |
SELECIONADO
public static final NomeDeEventosDeSeleção SELECIONADO
- Nome associado a um evento emitido quando modifica-se a opção selecionada
de um componente selecionável.
- Componentes que emitem esse estímulo:
- listaDeEscolha
- caixaDeEscolha
- botõesDeRádio
values
public static final NomeDeEventosDeSeleção[] 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(NomeDeEventosDeSeleção c : NomeDeEventosDeSeleção.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static NomeDeEventosDeSeleção 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