| Modifier and Type | Method and Description |
|---|---|
Genre |
Story.getGenre()
Returns the genre of the story
|
static Genre |
Genre.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Genre[] |
Genre.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Story.setGenre(Genre genre)
Sets the genre of the story.
|
| Constructor and Description |
|---|
Story(Long id,
String title,
String content,
Genre genre,
Theme theme1,
Theme theme2,
Date date,
User author,
boolean published)
Creates a new instance of
Story with id and no views |
Story(String title,
String content,
Genre genre,
Theme theme1,
Theme theme2,
Date date,
User author)
Creates a new instance of
Story |
Copyright © 2022. All rights reserved.