Updated the xml reader to pull in the rounding type of the compound marks and set each mark with that value
#story[1101]main
parent
f212414bd9
commit
be8b0e672d
@ -0,0 +1,34 @@
|
||||
package shared.enums;
|
||||
|
||||
/**
|
||||
* Enum for the types of rounding that can be done
|
||||
*/
|
||||
public enum RoundingType {
|
||||
/**
|
||||
* This is means it must be rounded port side
|
||||
*/
|
||||
Port,
|
||||
|
||||
/**
|
||||
* This is means it must be rounded starboard side
|
||||
*/
|
||||
Starboard,
|
||||
|
||||
/**
|
||||
* The boat within the compound mark with the SeqID
|
||||
* of 1 should be rounded to starboard and the boat
|
||||
* within the compound mark with the SeqID of 2 should
|
||||
* be rounded to port.
|
||||
*/
|
||||
SP,
|
||||
|
||||
/**
|
||||
* The boat within the compound mark with the SeqID
|
||||
* of 1 should be rounded to port and the boat
|
||||
* within the compound mark with the SeqID of 2 should
|
||||
* be rounded to starboard.
|
||||
*
|
||||
* opposite of SP
|
||||
*/
|
||||
PS;
|
||||
}
|
||||
Loading…
Reference in new issue