public static enum Conference.ErrorEvent extends Enum<Conference.ErrorEvent>
| Enum Constant and Description |
|---|
CONNECTION_ERROR |
NO_ERROR |
| Modifier and Type | Method and Description |
|---|---|
static Conference.ErrorEvent |
fromInteger(int i) |
static Conference.ErrorEvent |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Conference.ErrorEvent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Conference.ErrorEvent NO_ERROR
public static final Conference.ErrorEvent CONNECTION_ERROR
public static Conference.ErrorEvent[] values()
for (Conference.ErrorEvent c : Conference.ErrorEvent.values()) System.out.println(c);
public static Conference.ErrorEvent valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic static Conference.ErrorEvent fromInteger(int i)
Copyright © 2017. All rights reserved.