public static enum ContestEvent.EventType extends Enum<ContestEvent.EventType>
| Enum Constant and Description |
|---|
CLIENT
Client (account) information.
|
CONTEST_CLOCK
Contest Clock.
|
CONTEST_TITLE
Contest title.
|
GROUP
Account (Team) Group.
|
JUDGEMENT
Judgement.
|
LANGUAGE
Contest Language.
|
PROBLEM
Contest Problem.
|
SITE
Site.
|
| Modifier and Type | Method and Description |
|---|---|
static ContestEvent.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContestEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ContestEvent.EventType CLIENT
public static final ContestEvent.EventType PROBLEM
public static final ContestEvent.EventType LANGUAGE
public static final ContestEvent.EventType CONTEST_CLOCK
public static final ContestEvent.EventType CONTEST_TITLE
public static final ContestEvent.EventType JUDGEMENT
public static final ContestEvent.EventType GROUP
public static final ContestEvent.EventType SITE
public static ContestEvent.EventType[] values()
for (ContestEvent.EventType c : ContestEvent.EventType.values()) System.out.println(c);
public static ContestEvent.EventType 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 null