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

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

There is a newer version: 0.1.19.1
Show newest version
package com.rcll.domain;

import org.robocup_logistics.llsf_msgs.TeamProtos;

public enum TeamColor {
    CYAN,
    MAGENTA;

    public static TeamColor fromString(String str) {
        if (str.equalsIgnoreCase("magenta")) {
            return MAGENTA;
        } else if (str.equalsIgnoreCase("cyan")) {
            return CYAN;
        }
        throw new RuntimeException("Unkown TeamColor: " + str);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy