mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-26 23:46:36 +00:00
29 lines
686 B
Java
Executable File
29 lines
686 B
Java
Executable File
package com.sap.sailing.domain.common;
|
|
|
|
/**
|
|
* The reasons why a competitor may get the maximum number of points, usually equaling the
|
|
* number of competitors enlisted for the regatta plus one.
|
|
*
|
|
* @author Axel Uhl (d043530)
|
|
*
|
|
*/
|
|
public enum MaxPointsReason {
|
|
/** The competitor finished the race properly */
|
|
NONE,
|
|
/** Did Not Start */
|
|
DNS,
|
|
/** Did Not Finish */
|
|
DNF,
|
|
/** DiSQualified */
|
|
DSQ,
|
|
/** On Course Side (jumped the gun) */
|
|
OCS,
|
|
/** Disqualified, non-discardable */
|
|
DND,
|
|
/** Black Flag Disqualified */
|
|
BFD,
|
|
/** Did Not Compete */
|
|
DNC,
|
|
/** Retired After Finishing */
|
|
RAF
|
|
} |