Interface ICustomFieldNames
-
public interface ICustomFieldNamesAllows to query names of
tasksandcasescustom fields.Example: Query the names of all custom fields set on any task
List<Result> names = ICustomFieldNames.tasks().executor().results();Example: Query the names of all custom fields of type
Stringon cases matching the givencase queryList<Result> names = ICustomFieldNames.cases().filter(caseQuery).type(CustomFieldType.STRING).executor().results();- Since:
- 9.2
- API:
- This is a public API.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceICustomFieldNames.NameQuery<T extends Query<?>>Custom field name querystatic classICustomFieldNames.ResultCustom field name query result
-
Method Summary
Static Methods Modifier and Type Method Description static ICustomFieldNames.NameQuery<CaseQuery>cases()Queries names ofcasescustom fields.static ICustomFieldNames.NameQuery<TaskQuery>tasks()Queries names oftaskscustom fields.
-
-
-
Method Detail
-
tasks
static ICustomFieldNames.NameQuery<TaskQuery> tasks()
Queries names of
taskscustom fields.Example:
List<Result> names = ICustomFieldNames.tasks().executor().results();- Returns:
- task custom field name query to further filter the result
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
cases
static ICustomFieldNames.NameQuery<CaseQuery> cases()
Queries names of
casescustom fields.Example:
List<Result> names = ICustomFieldNames.cases().executor().results();- Returns:
- case custom field name query to further filter the result
- API:
- This public API is available in IvyScript and Java. It has the visibility EXPERT.
-
-