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 com.guinetik.hexafun.hexa.UseCaseKey<TaskInputs.CompleteTask,com.guinetik.hexafun.fun.Result<Task>> TaskUseCases.COMPLETEstatic final com.guinetik.hexafun.hexa.UseCaseKey<TaskInputs.CreateTask,com.guinetik.hexafun.fun.Result<Task>> TaskUseCases.CREATEstatic final com.guinetik.hexafun.hexa.UseCaseKey<TaskInputs.FindTask,com.guinetik.hexafun.fun.Result<Task>> TaskUseCases.FINDTaskUseCases.LISTstatic final com.guinetik.hexafun.hexa.UseCaseKey<TaskInputs.StartTask,com.guinetik.hexafun.fun.Result<Task>> TaskUseCases.STARTstatic final com.guinetik.hexafun.hexa.UseCaseKey<TaskInputs.UpdateTask,com.guinetik.hexafun.fun.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 TypeMethodDescriptioncom.guinetik.hexafun.fun.Result<Task>TaskApp.completeTask(String taskId) com.guinetik.hexafun.fun.Result<Task>TaskApp.createTask(String title, String description) InMemoryTaskRepository.findAll()TaskRepository.findAll()Find all tasks.Find a task by ID.com.guinetik.hexafun.fun.Result<Task>TaskApp.listTasks()com.guinetik.hexafun.fun.Result<Task>com.guinetik.hexafun.fun.Result<Task>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