Completed
Push — master ( 74c8db...6c2084 )
by John
33s
created

org.usfirst.frc.team3695.robot.enumeration.Bot.toString()   A

Complexity

Conditions 1

Size

Total Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 2
c 0
b 0
f 0
rs 10
cc 1
1
package org.usfirst.frc.team3695.robot.enumeration;
2
3
public enum Bot {
4
	OOF("OOF"), SWISS("Swiss");
5
	private final String name;
6
	Bot(String name) {
7
		this.name = name;
8
	}
9
	
10
	public String toString() {
11
		return name;
12
	}
13
	;
14
}
15