-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEarthquakeGroup.java
88 lines (82 loc) · 2.46 KB
/
EarthquakeGroup.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
import java.util.ArrayList;
/**
* The class EarthquakeGroup represents a group of earthquakes. An instance
* of type EarthquakeGroup is empty when it is newly constructed, but it can
* be filled with objects of type Earthquake
*
* @author Merlin Unterfinger
* @version 1.1
*/
public class EarthquakeGroup
{
// instance variables
private ArrayList<Earthquake> al;
/**
* Constructor for objects of class EarthquakeGroup
*/
public EarthquakeGroup()
{
// initialise instance variables
al = new ArrayList<Earthquake>();
}
/**
* This method is used to accces the ArrayList containing earthquakes.
*
* @return al ArrayList containing Earthquakes
*/
public ArrayList getAl()
{
return(this.al);
}
/**
* This methods adds an object of type Earthquake to the EarthquakeGroup.
*
* @param eq an object of type Earthquake
*/
public void add(Earthquake eq)
{
// Add an earthquake
this.al.add(eq);
}
/**
* This method returns an object of type Earthquake at a specific position "i" (index)
* in the "al" ArrayList, which contains the object of type Earthquake.
*
* @param i index of Earthquake
* @return eq Earthquake
*/
public Earthquake getEQ(int i)
{
// Add an earthquake
return(this.al.get(i));
}
/**
* This methods filters the earthquakes based on their magnitude. It takes a limit
* and an arithmetic operator in string format as input.
*
* @param op an arithmetic operator in string format; either "<", ">" or "lower", "greater"
* @param limit (double), the split value
* @return eqgf An object of type EarthquakeGroup containing the filtered earthquakes.
*/
public EarthquakeGroup filterEqMag(String op, double limit)
{
// Filter the Earthquakes
EarthquakeGroup eqgf= new EarthquakeGroup();
if (op == "<" || op =="lower") {
for (Earthquake e : this.al) {
if (e.getMag() < limit) {
eqgf.add(e);
}
}
} else if (op == ">" || op =="greater") {
for (Earthquake e : this.al) {
if (e.getMag() > limit) {
eqgf.add(e);
}
}
} else {
System.out.println("Invalid arithmetic opertaor input.");
}
return(eqgf);
}
}