Uses of Package
com.almworks.jira.structure.api.query
Packages that use com.almworks.jira.structure.api.query
Package
Description
This package and subpackages contain Structure API, which can be used to integrate with and extend Structure add-on for JIRA.
-
Classes in com.almworks.jira.structure.api.query used by com.almworks.jira.structure.apiClassDescriptionFactory for creating new instances of
StructureQueryBuilder.Parses astructure queryexpressed in the Structured JQL language. -
Classes in com.almworks.jira.structure.api.query used by com.almworks.jira.structure.api.queryClassDescriptionThis interface represents the environment of the
StructureQuerybeing executed.A structure query is a condition on rows and their relationships in aForest, such as rows that are children of issues satisfying JQL 'type = Epic' or rows at the top level of the forest.StructureQueryBuilderallows you to build astructure querywith a fluent interface.This class allows to specify a basic constraint, either on its own, or as the last step of building arelational constraint.Object of this class contains the state of the builder; you can finish building the query by callingStructureQueryBuilder.Head.end(), or add more constraints, connecting them withStructureQueryBuilder.andorStructureQueryBuilder.or.This class lets you addoperatorto therelational constraintbeing built, or to combine the already added relation with another one viaStructureQueryBuilder.OpStep.or().This class allows you to continue buildingrelational constraintby adding anotherrelation.This class allows you to either build abasic constraintor start building a relational constraint.Object of this class contains the state of the builder inside the currently open parentheses; you can finish building the query in the parentheses and return to the main builder by callingStructureQueryBuilder.Sub.endsub(), or add more constraints inside the parentheses, connecting them withStructureQueryBuilder.andorStructureQueryBuilder.or.Represents the consumer ofStructureQueryConstraint.Sequencevalues - i.e., the consumer of matching indices.Allows to implement a sequence of numbers in a generator-like fashion.