Uses of Class
org.powertac.visualizer.domain.enumeration.FileType
-
Packages that use FileType Package Description org.powertac.visualizer.domain JPA domain objects.org.powertac.visualizer.domain.enumeration org.powertac.visualizer.repository Spring Data JPA repositories.org.powertac.visualizer.service Service layer beans. -
-
Uses of FileType in org.powertac.visualizer.domain
Methods in org.powertac.visualizer.domain that return FileType Modifier and Type Method Description FileTypeFile. getType()Methods in org.powertac.visualizer.domain with parameters of type FileType Modifier and Type Method Description voidFile. setType(FileType type) -
Uses of FileType in org.powertac.visualizer.domain.enumeration
Methods in org.powertac.visualizer.domain.enumeration that return FileType Modifier and Type Method Description static FileTypeFileType. valueOf(String name)Returns the enum constant of this type with the specified name.static FileType[]FileType. values()Returns an array containing the constants of this enum type, in the order they are declared. -
Uses of FileType in org.powertac.visualizer.repository
Methods in org.powertac.visualizer.repository with parameters of type FileType Modifier and Type Method Description List<File>FileRepository. findByOwnerIsCurrentUser(String login, FileType type)List<File>FileRepository. findByOwnerIsCurrentUserOrShared(String login, FileType type) -
Uses of FileType in org.powertac.visualizer.service
Methods in org.powertac.visualizer.service with parameters of type FileType Modifier and Type Method Description FileFileService. createFile(FileType type, String name, User owner)Create a new fileList<File>FileService. findByOwnerIsCurrentUser(String login, FileType type)Get all the files owned by this user, plus all shared files.List<File>FileService. findByOwnerIsCurrentUserOrShared(String login, FileType type)Get all the files owned by this user, plus all shared files.
-