![]() |
Bridges-Java 3.5.0-dev1
Bridges(Java API)
|
This class represents an actor-movie pair object, to be used with the IMDB actor-movie dataset. More...
Public Member Functions | |
ActorMovieIMDB () | |
String | getActor () |
get the actor from this object | |
void | setActor (String a) |
set the actor from this object | |
String | getMovie () |
get the movie from this object | |
void | setMovie (String m) |
set the movie from this object | |
double | getMovieRating () |
get the movie rating from this object | |
void | setMovieRating (double r) |
set the movie rating for this object | |
Vector< String > | getGenres () |
get the genres of this movie | |
void | setGenres (Vector< String > g) |
set the genres for this movie | |
This class represents an actor-movie pair object, to be used with the IMDB actor-movie dataset.
A user typically does not create an ActorMovieIMDB object. They are usually returned by bridges::connect::DataSource::getActorMovieIMDBData() and bridges::connect::DataSource::getActorMovieIMDBData2()
Check out the tutorial on the IMDB dataset at https://bridgesuncc.github.io/tutorials/Data_IMDB.html
bridges.data_src_dependent.ActorMovieIMDB.ActorMovieIMDB | ( | ) |
Constructor
String bridges.data_src_dependent.ActorMovieIMDB.getActor | ( | ) |
get the actor from this object
Vector< String > bridges.data_src_dependent.ActorMovieIMDB.getGenres | ( | ) |
get the genres of this movie
String bridges.data_src_dependent.ActorMovieIMDB.getMovie | ( | ) |
get the movie from this object
double bridges.data_src_dependent.ActorMovieIMDB.getMovieRating | ( | ) |
get the movie rating from this object
void bridges.data_src_dependent.ActorMovieIMDB.setActor | ( | String | a | ) |
set the actor from this object
a | actor (string) to be set |
void bridges.data_src_dependent.ActorMovieIMDB.setGenres | ( | Vector< String > | g | ) |
set the genres for this movie
g | genres to be set for the movie (vector of strings) |
void bridges.data_src_dependent.ActorMovieIMDB.setMovie | ( | String | m | ) |
set the movie from this object
m | movie (string) to be set |
void bridges.data_src_dependent.ActorMovieIMDB.setMovieRating | ( | double | r | ) |
set the movie rating for this object
r | rating (double) to be set |