net.codescore.exe
Enum ScoringMode
java.lang.Object
java.lang.Enum<ScoringMode>
net.codescore.exe.ScoringMode
- All Implemented Interfaces:
- Serializable, Comparable<ScoringMode>
public enum ScoringMode
- extends Enum<ScoringMode>
Tells the grader how to score a submission
- Custom - A user defined grading algorithm.
Not yet implemented!
- ExeTime - The submission's score is based on its runtime.
Not yet implemented!
- Flat - Every submission is given a flat, or equal number
of points.
- SubTime - The submission's score is based on the number of
minutes it was submitted after the competition started.
- Weighted - The submission's score is based on both the time it
was submitted and on the problems associated difficulty rating.
- Author:
- Adam Cornett
|
Method Summary |
static ScoringMode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ScoringMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
Custom
public static final ScoringMode Custom
ExeTime
public static final ScoringMode ExeTime
Flat
public static final ScoringMode Flat
SubTime
public static final ScoringMode SubTime
Weighted
public static final ScoringMode Weighted
values
public static ScoringMode[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (ScoringMode c : ScoringMode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static ScoringMode valueOf(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:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright 2008 © Adam Cornett, Andrew Conner All Rights Reserved.