Interface NoteQuery

All Superinterfaces:
QueryBuilder<Note>

public interface NoteQuery extends QueryBuilder<Note>
  • Method Details

    • id

      NoteQuery id(String id)
      Sets the ID of the Note in the query.
      Parameters:
      id - the ID of the note
      Returns:
      the current NoteQuery instance for method chaining
    • documentId

      NoteQuery documentId(String documentId)
      Sets the document D of the Note in the query.
      Parameters:
      documentId - the ID of the document
      Returns:
      the current NoteQuery instance for method chaining
    • type

      NoteQuery type(NoteType type)
      Sets the type of the Note in the query.
      Parameters:
      type - note type
      Returns:
      the current NoteQuery instance for method chaining
    • title

      NoteQuery title(String title)
      Sets the title of the Note in the query.
      Parameters:
      title - note title
      Returns:
      the current NoteQuery instance for method chaining
    • spreadId

      NoteQuery spreadId(Integer spreadId)
      Sets the spread id of the Note in the query.
      Parameters:
      spreadId - spread id
      Returns:
      the current NoteQuery instance for method chaining
    • page

      NoteQuery page(Integer page)
      Sets the page number of the Note in the query.
      Parameters:
      page - page number
      Returns:
      the current NoteQuery instance for method chaining
    • status

      NoteQuery status(NoteStatus status)
      Sets the status id of the Note in the query.
      Parameters:
      status - note status
      Returns:
      the current NoteQuery instance for method chaining
    • assignedTo

      NoteQuery assignedTo(String assignedTo)
      Sets the assigned user to the note of the Note in the query.
      Parameters:
      assignedTo - user assigned to the note
      Returns:
      the current NoteQuery instance for method chaining
    • isDraft

      NoteQuery isDraft(boolean isDraft)
      Sets the draft to the note of the Note in the query.
      Parameters:
      isDraft - draft flag of the note
      Returns:
      the current NoteQuery instance for method chaining
    • createdBy

      NoteQuery createdBy(String createdBy)
      Sets the author of the Note in the query.
      Parameters:
      createdBy - user who create the note
      Returns:
      the current NoteQuery instance for method chaining