BrightSide Workbench Full Report + Source Code
org.turro.elephant.search.FoundList.FoundItem Class Reference
Inheritance diagram for org.turro.elephant.search.FoundList.FoundItem:
Collaboration diagram for org.turro.elephant.search.FoundList.FoundItem:

Public Member Functions

 FoundItem (String id, String link, String image, String title, String value, double similarity, String query)
 
String getId ()
 
String getLink ()
 
String getImage ()
 
String getTitle ()
 
String getString ()
 
double getSimilarity ()
 

Detailed Description

Definition at line 28 of file FoundList.java.

Constructor & Destructor Documentation

◆ FoundItem()

org.turro.elephant.search.FoundList.FoundItem.FoundItem ( String  id,
String  link,
String  image,
String  title,
String  value,
double  similarity,
String  query 
)

Definition at line 32 of file FoundList.java.

33  {
34  this.id = id;
35  this.link = link;
36  this.image = image;
37  this.title = title;
38  this.value = value;
39  this.similarity = similarity;
40  }

Member Function Documentation

◆ getId()

String org.turro.elephant.search.FoundList.FoundItem.getId ( )

Implements org.turro.elephant.search.IFoundItem.

Definition at line 42 of file FoundList.java.

42 { return id; }

◆ getImage()

String org.turro.elephant.search.FoundList.FoundItem.getImage ( )

Implements org.turro.elephant.search.IFoundItem.

Definition at line 46 of file FoundList.java.

46 { return image; }

◆ getLink()

String org.turro.elephant.search.FoundList.FoundItem.getLink ( )

Implements org.turro.elephant.search.IFoundItem.

Definition at line 44 of file FoundList.java.

44 { return link; }

◆ getSimilarity()

double org.turro.elephant.search.FoundList.FoundItem.getSimilarity ( )

Implements org.turro.elephant.search.IFoundItem.

Definition at line 52 of file FoundList.java.

52 { return similarity; }

◆ getString()

String org.turro.elephant.search.FoundList.FoundItem.getString ( )

Implements org.turro.elephant.search.IFoundItem.

Definition at line 50 of file FoundList.java.

50 { return value; }

◆ getTitle()

String org.turro.elephant.search.FoundList.FoundItem.getTitle ( )

Implements org.turro.elephant.search.IFoundItem.

Definition at line 48 of file FoundList.java.

48 { return title; }

The documentation for this class was generated from the following file: