Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Any help please? I need to complete this class. public class Tweet { // TODO: Add appropriate data types public Tweet(String p, String i, String

Any help please?

I need to complete this class.

public class Tweet {

// TODO: Add appropriate data types public Tweet(String p, String i, String d, String u, String t) { // TODO } public void addNeighbour(String ID) { // PRE: - // POST: Adds a neighbour to the current tweet as part of graph structure // TODO } public Integer numNeighbours() { // PRE: - // POST: Returns the number of neighbours of this tweet // TODO return null; } public void deleteAllNeighbours() { // PRE: - // POST: Deletes all neighbours of this tweet // TODO } public Vector getNeighbourTweetIDs () { // PRE: - // POST: Returns IDs of neighbouring tweets as vector of strings // TODO return null; }

public Boolean isNeighbour(String ID) { // PRE: - // POST: Returns true if ID is neighbour of the current tweet, false otherwise // TODO

return null; } public Boolean correctlyPredictedPolarity () { // PRE: - // POST: Returns true if predicted polarity matches gold, false otherwise // TODO

return null; } public Polarity getGoldPolarity() { // PRE: - // POST: Returns the gold polarity of the tweet // TODO

return null; } public Polarity getPredictedPolarity() { // PRE: - // POST: Returns the predicted polarity of the tweet // TODO

return null; } public void setPredictedPolarity(Polarity p) { // PRE: - // POST: Sets the predicted polarity of the tweet

// TODO } public String getID() { // PRE: - // POST: Returns ID of tweet // TODO

return null; } public String getDate() { // PRE: - // POST: Returns date of tweet // TODO

return null; } public String getUser() { // PRE: - // POST: Returns identity of tweeter // TODO

return null; } public String getText() { // PRE: - // POST: Returns text of tweet as a single string // TODO

return null; } public String[] getWords() { // PRE: - // POST: Returns tokenised text of tweet as array of strings if (this.getText() == null) return null;

String[] words = null; String tmod = this.getText(); tmod = tmod.replaceAll("@.*?\\s", ""); tmod = tmod.replaceAll("http.*?\\s", ""); tmod = tmod.replaceAll("\\s+", " "); tmod = tmod.replaceAll("[\\W&&[^\\s]]+", ""); tmod = tmod.toLowerCase(); tmod = tmod.trim(); words = tmod.split("\\s"); return words; } }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Introduction To Databases And Data Warehouses

Authors: Nenad Jukic, Susan Vrbsky, Svetlozar Nestorov

1st Edition

1943153191, 978-1943153190

More Books

Students also viewed these Databases questions

Question

3. Who would the members be?

Answered: 1 week ago

Question

4. Who would lead the group?

Answered: 1 week ago