UserDefinedFunction クラス
- java.
lang. Object - JsonSerializable
- リソース
- com.
microsoft. azure. cosmosdb. UserDefinedFunction
- com.
public class UserDefinedFunction extends Resource
Azure Cosmos DB データベース サービスのユーザー定義関数を表します。
Cosmos DB では、クエリ、ストアド プロシージャ、トリガー内で使用できる JavaScript UDF がサポートされています。 詳細については、サーバー側の JavaScript API のドキュメントを参照してください。
コンストラクターの概要
コンストラクター | 説明 |
---|---|
UserDefinedFunction() |
コンストラクターです。 |
UserDefinedFunction(String jsonString) |
コンストラクターです。 |
メソッドの概要
修飾子と型 | メソッドと説明 |
---|---|
String |
getBody()
ユーザー定義関数の本体を取得します。 |
void |
setBody(String body)
ユーザー定義関数の本体を設定します。 |
継承メンバー
JsonSerializable.get(String propertyName)
JsonSerializable.getBoolean(String propertyName)
JsonSerializable.getCollection(String propertyName)
JsonSerializable.getDouble(String propertyName)
Resource.getETag()
JsonSerializable.getHashMap()
Resource.getId()
JsonSerializable.getInt(String propertyName)
JsonSerializable.getLogger()
JsonSerializable.getLong(String propertyName)
JsonSerializable.getMapper()
JsonSerializable.getObject(String propertyName)
JsonSerializable.getObjectByPath(List<String> propertyNames)
Resource.getResourceId()
Resource.getSelfLink()
JsonSerializable.getString(String propertyName)
Resource.getTimestamp()
JsonSerializable.has(String propertyName)
JsonSerializable.JsonSerializable()
JsonSerializable.JsonSerializable(String jsonString, ObjectMapper objectMapper)
JsonSerializable.JsonSerializable(String jsonString)
JsonSerializable.remove(String propertyName)
Resource.Resource(Resource resource)
Resource.Resource()
Resource.Resource(String jsonString, ObjectMapper objectMapper)
Resource.Resource(String jsonString)
Resource.setId(String id)
Resource.setResourceId(String resourceId)
JsonSerializable.toJson()
JsonSerializable.toJson(SerializationFormattingPolicy formattingPolicy)
JsonSerializable.toString()
コンストラクターの詳細
UserDefinedFunction
public UserDefinedFunction()
コンストラクターです。
UserDefinedFunction
public UserDefinedFunction(String jsonString)
コンストラクターです。
パラメーター:
jsonString
- ユーザー定義関数を表す json 文字列。
メソッドの詳細
getBody
public String getBody()
ユーザー定義関数の本体を取得します。
戻り値:
本文。
setBody
public void setBody(String body)
ユーザー定義関数の本体を設定します。
パラメーター:
body
- 本文。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
Azure SDK for Java