Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2XB3FinalProject
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Schankula
2XB3FinalProject
Commits
100efdf6
There was an error fetching the commit references. Please try again later.
Commit
100efdf6
authored
7 years ago
by
Ray
Browse files
Options
Downloads
Patches
Plain Diff
Added record class
parent
2ac85593
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/record/Record.java
+102
-0
102 additions, 0 deletions
src/record/Record.java
with
102 additions
and
0 deletions
src/record/Record.java
0 → 100644
+
102
−
0
View file @
100efdf6
package
record
;
public
class
Record
{
private
final
int
eventId
;
private
final
String
occurId
;
private
final
int
speciesId
;
private
final
int
count
;
private
final
float
latitude
;
private
final
float
longitude
;
private
final
String
locality
;
private
final
int
depth
;
private
final
int
year
;
private
final
int
month
;
private
final
int
day
;
private
final
int
hour
;
private
final
int
minute
;
public
Record
(
int
eventId
,
String
occurId
,
int
speciesId
,
int
count
,
float
latitude
,
float
longitude
,
String
locality
,
int
depth
,
int
year
,
int
month
,
int
day
,
int
hour
,
int
minute
)
{
this
.
eventId
=
eventId
;
this
.
occurId
=
occurId
;
this
.
speciesId
=
speciesId
;
this
.
count
=
count
;
this
.
latitude
=
latitude
;
this
.
longitude
=
longitude
;
this
.
locality
=
locality
;
this
.
depth
=
depth
;
this
.
year
=
year
;
this
.
month
=
month
;
this
.
day
=
day
;
this
.
hour
=
hour
;
this
.
minute
=
minute
;
}
public
int
getEventId
()
{
return
eventId
;
}
public
String
getOccurId
()
{
return
occurId
;
}
public
int
getSpeciesId
()
{
return
speciesId
;
}
public
int
getCount
()
{
return
count
;
}
public
float
getLatitude
()
{
return
latitude
;
}
public
float
getLongitude
()
{
return
longitude
;
}
public
String
getLocality
()
{
return
locality
;
}
public
int
getDepth
()
{
return
depth
;
}
public
int
getYear
()
{
return
year
;
}
public
int
getMonth
()
{
return
month
;
}
public
int
getDay
()
{
return
day
;
}
public
int
getHour
()
{
return
hour
;
}
public
int
getMinute
()
{
return
minute
;
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment