Interface GetSchemaApi.Fields
-
- Enclosing interface:
- GetSchemaApi
@Path("/{indexType:cores|collections}/{indexName}/schema") public static interface GetSchemaApi.Fields
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemaGetDynamicFieldInfoResponse
getDynamicFieldInfo(String fieldName)
SchemaGetFieldInfoResponse
getFieldInfo(String fieldName)
SchemaGetFieldTypeInfoResponse
getFieldTypeInfo(String fieldTypeName)
SchemaListCopyFieldsResponse
listCopyFields()
SchemaListDynamicFieldsResponse
listDynamicFields()
SchemaListFieldsResponse
listSchemaFields()
SchemaListFieldTypesResponse
listSchemaFieldTypes()
-
-
-
Method Detail
-
listSchemaFields
@GET @Path("/fields") SchemaListFieldsResponse listSchemaFields()
-
getFieldInfo
@GET @Path("/fields/{fieldName}") SchemaGetFieldInfoResponse getFieldInfo(@PathParam("fieldName") String fieldName)
-
listCopyFields
@GET @Path("/copyfields") SchemaListCopyFieldsResponse listCopyFields()
-
listDynamicFields
@GET @Path("/dynamicfields") SchemaListDynamicFieldsResponse listDynamicFields()
-
getDynamicFieldInfo
@GET @Path("/dynamicfields/{fieldName}") SchemaGetDynamicFieldInfoResponse getDynamicFieldInfo(@PathParam("fieldName") String fieldName)
-
listSchemaFieldTypes
@GET @Path("/fieldtypes") SchemaListFieldTypesResponse listSchemaFieldTypes()
-
getFieldTypeInfo
@GET @Path("/fieldtypes/{fieldTypeName}") SchemaGetFieldTypeInfoResponse getFieldTypeInfo(@PathParam("fieldTypeName") String fieldTypeName)
-
-