|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Evenement>
pcuserveur.lib.Evenement
public enum Evenement
Serveur
,
Canal
Enum Constant Summary | |
---|---|
BANNI
Un utilisateur a été banni. |
|
EJECTE
Ejecté d'un canal. |
|
PARLE
Parle sur un canal. |
|
PARTI
Part d'un canal. |
|
REJOINT
Rejoint un canal. |
|
SUJETCHANGE
Le sujet du canal a été changé. |
|
SUPPRIME
Le canal a été supprimé. |
Method Summary | |
---|---|
static Evenement |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Evenement[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, 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 Evenement EJECTE
Ejecté d'un canal.
public static final Evenement PARLE
Parle sur un canal.
public static final Evenement PARTI
Part d'un canal.
public static final Evenement REJOINT
Rejoint un canal.
public static final Evenement SUJETCHANGE
Le sujet du canal a été changé.
public static final Evenement SUPPRIME
Le canal a été supprimé.
public static final Evenement BANNI
Un utilisateur a été banni.
Method Detail |
---|
public static Evenement[] values()
for (Evenement c : Evenement.values()) System.out.println(c);
public static Evenement valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |