Interface ITypeClause
The possible methods for a type clause
Namespace:Dapplo.Jira.Query
Assembly:Dapplo.Jira.dll
Syntax
public interface ITypeClause
Properties
| Improve this Doc View SourceNot
Negates the expression
Declaration
ITypeClause Not { get; }
Property Value
Type | Description |
---|---|
ITypeClause |
Methods
| Improve this Doc View SourceIn(IssueType[])
Test if the type of the content is one of the specified types
Declaration
IFinalClause In(params IssueType[] types)
Parameters
Type | Name | Description |
---|---|---|
IssueType[] | types | IssueType array |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
In(String[])
Test if the type of the content is one of the specified types
Declaration
IFinalClause In(params string[] types)
Parameters
Type | Name | Description |
---|---|---|
System.String[] | types | Types |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
Is(IssueType)
Test if the type of the content is the specified type
Declaration
IFinalClause Is(IssueType type)
Parameters
Type | Name | Description |
---|---|---|
IssueType | type | IssueType |
Returns
Type | Description |
---|---|
IFinalClause | IFinalClause |
Is(String)
This allows fluent constructs like Type.Is("Feature")
Declaration
IFinalClause Is(string type)
Parameters
Type | Name | Description |
---|---|---|
System.String | type |
Returns
Type | Description |
---|---|
IFinalClause |