All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rcll.domain.Zone Maven / Gradle / Ivy

There is a newer version: 0.1.19.1
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy