forked from SeanWalsh95/Ticket-To-Ride
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCityName.java
58 lines (57 loc) · 818 Bytes
/
CityName.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/**
* Enumeration class CityName - write a description of the enum class here
*
* @author Sean Walsh
* @version 1.0
*/
public enum CityName
{
Aberdeen,
Aberystwyth,
Barrow,
Belfast,
Birmingham,
Brighton,
Bristol,
Cambridge,
Cardiff,
Carlisle,
Carmarthen,
Cork,
Dover,
Dublin,
Dundalk,
Dundee,
Edinburgh,
FortWilliam,
France,
Galway,
Glasgow,
Holyhead,
Hull,
Inverness,
Ipswich,
Leeds,
Limerick,
Liverpool,
LlandrindodWells,
London,
Londonderry,
Manchester,
Newcastle,
NewYork,
Northampton,
Norwich,
Nottingham,
Penzance,
Plymouth,
Reading,
Rosslare,
Sligo,
Southampton,
Stornoway,
Stranraer,
Tullamore,
Ullapool,
Wick
}