001// Copyright (c) FIRST and other WPILib contributors.
002// Open Source Software; you can modify and/or share it under the terms of
003// the WPILib BSD license file in the root directory of this project.
004
005package org.wpilib.hardware.hal;
006
007/** Alliance station ID. */
008public enum AllianceStationID {
009  /** Unknown. */
010  UNKNOWN,
011  /** Red 1. */
012  RED_1,
013  /** Red 2. */
014  RED_2,
015  /** Red 3. */
016  RED_3,
017  /** Blue 1. */
018  BLUE_1,
019  /** Blue 2. */
020  BLUE_2,
021  /** Blue 3. */
022  BLUE_3
023}