Uses of Record Class
com.guinetik.hexafun.examples.tasks.Task
Packages that use Task
-
Uses of Task in com.guinetik.hexafun.examples.tasks
Fields in com.guinetik.hexafun.examples.tasks with type parameters of type TaskModifier and TypeFieldDescriptionstatic final UseCaseKey<TaskInputs.CompleteTask,Result<Task>> TaskUseCases.COMPLETEstatic final UseCaseKey<TaskInputs.CreateTask,Result<Task>> TaskUseCases.CREATEstatic final UseCaseKey<TaskInputs.FindTask,Result<Task>> TaskUseCases.FINDstatic final UseCaseKey<Void,List<Task>> TaskUseCases.LISTstatic final UseCaseKey<TaskInputs.StartTask,Result<Task>> TaskUseCases.STARTstatic final UseCaseKey<TaskInputs.UpdateTask,Result<Task>> TaskUseCases.UPDATEMethods in com.guinetik.hexafun.examples.tasks that return TaskModifier and TypeMethodDescriptionTask.complete()Mark this task as completed (move to DONE).static TaskCreate a new task with generated ID in TODO status.Task.reopen()Move task back to TODO.Save a task (create or update).Task.start()Start working on this task (move to DOING).Task.withDescription(String newDescription) Update the description.Task.withStatus(TaskStatus newStatus) Update the status.Update the title.Methods in com.guinetik.hexafun.examples.tasks that return types with arguments of type TaskModifier and TypeMethodDescriptionTaskApp.completeTask(String taskId) TaskApp.createTask(String title, String description) InMemoryTaskRepository.findAll()TaskRepository.findAll()Find all tasks.Find a task by ID.TaskApp.listTasks()TaskApp.updateTask(String taskId, String title, String description) Methods in com.guinetik.hexafun.examples.tasks with parameters of type Task -
Uses of Task in com.guinetik.hexafun.examples.tasks.tui
Methods in com.guinetik.hexafun.examples.tasks.tui that return types with arguments of type Task