com.rcll.domain.Zone Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk Show documentation
Show all versions of java-sdk Show documentation
Java SDK for the RoboCup Logistics League
package com.rcll.domain;
import lombok.AllArgsConstructor;
@AllArgsConstructor
public class Zone {
final TeamColor color;
final int number;
@Override
public String toString() {
switch (color) {
case CYAN:
return "C_Z" + number;
case MAGENTA:
return "M_Z" + number;
}
throw new RuntimeException("Invalid teamColor: " + this);
}
}