azure-docs-sdk-java/docs-ref-autogen/com.azure.core.util.seriali...

100 строки
6.7 KiB
YAML

### YamlMime:JavaEnum
uid: "com.azure.core.util.serializer.CollectionFormat"
fullName: "com.azure.core.util.serializer.CollectionFormat"
name: "CollectionFormat"
nameWithType: "CollectionFormat"
summary: "Swagger collection format to use for joining [List][] parameters in paths, queries, and headers.\n\n\n[List]: https://docs.oracle.com/javase/8/docs/api/java/util/List.html"
inheritances:
- "<xref href=\"java.lang.Object?displayProperty=fullName\" data-throw-if-not-resolved=\"False\" />"
- "<xref href=\"java.lang.Enum?displayProperty=fullName\" data-throw-if-not-resolved=\"False\" />"
inheritedClassMethods:
- classRef: "java.lang.<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html\">Enum</a>"
methodsRef:
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#valueOf-java.lang.Class-java.lang.String-\">valueOf</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#clone--\">clone</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#compareTo-E-\">compareTo</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#describeConstable--\">describeConstable</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#equals-java.lang.Object-\">equals</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#finalize--\">finalize</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#getDeclaringClass--\">getDeclaringClass</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#hashCode--\">hashCode</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#name--\">name</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#ordinal--\">ordinal</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html#toString--\">toString</a>"
- classRef: "java.lang.<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html\">Object</a>"
methodsRef:
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#getClass--\">getClass</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notify--\">notify</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notifyAll--\">notifyAll</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait--\">wait</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-\">wait</a>"
- "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-int-\">wait</a>"
syntax: "public enum **CollectionFormat**</br> extends <a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/Enum.html\">Enum</a>&lt;<xref href=\"com.azure.core.util.serializer.CollectionFormat?alt=com.azure.core.util.serializer.CollectionFormat&text=CollectionFormat\" data-throw-if-not-resolved=\"False\" />&gt;"
fields:
- uid: "com.azure.core.util.serializer.CollectionFormat.CSV"
fullName: "com.azure.core.util.serializer.CollectionFormat.CSV"
name: "CSV"
nameWithType: "CollectionFormat.CSV"
summary: "Comma separated values."
desc: "Comma separated values. E.g. foo,bar"
- uid: "com.azure.core.util.serializer.CollectionFormat.MULTI"
fullName: "com.azure.core.util.serializer.CollectionFormat.MULTI"
name: "MULTI"
nameWithType: "CollectionFormat.MULTI"
summary: "Corresponds to multiple parameter instances instead of multiple values for a single instance."
desc: "Corresponds to multiple parameter instances instead of multiple values for a single instance. E.g. foo=bar&foo=baz"
- uid: "com.azure.core.util.serializer.CollectionFormat.PIPES"
fullName: "com.azure.core.util.serializer.CollectionFormat.PIPES"
name: "PIPES"
nameWithType: "CollectionFormat.PIPES"
summary: "Pipe(|) separated values."
desc: "Pipe(|) separated values. E.g. foo|bar"
- uid: "com.azure.core.util.serializer.CollectionFormat.SSV"
fullName: "com.azure.core.util.serializer.CollectionFormat.SSV"
name: "SSV"
nameWithType: "CollectionFormat.SSV"
summary: "Space separated values."
desc: "Space separated values. E.g. foo bar"
- uid: "com.azure.core.util.serializer.CollectionFormat.TSV"
fullName: "com.azure.core.util.serializer.CollectionFormat.TSV"
name: "TSV"
nameWithType: "CollectionFormat.TSV"
summary: "Tab separated values."
desc: "Tab separated values. E.g. foo\\\\tbar"
methods:
- uid: "com.azure.core.util.serializer.CollectionFormat.getDelimiter()"
fullName: "com.azure.core.util.serializer.CollectionFormat.getDelimiter()"
name: "getDelimiter()"
nameWithType: "CollectionFormat.getDelimiter()"
summary: "Gets the delimiter used to join a list of parameters."
syntax: "public String getDelimiter()"
desc: "Gets the delimiter used to join a list of parameters."
returns:
description: "the delimiter of the current collection format."
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/String.html\">String</a>"
- uid: "com.azure.core.util.serializer.CollectionFormat.valueOf(java.lang.String)"
fullName: "com.azure.core.util.serializer.CollectionFormat.valueOf(String name)"
name: "valueOf(String name)"
nameWithType: "CollectionFormat.valueOf(String name)"
modifiers:
- "static"
parameters:
- name: "name"
type: "<a href=\"https://docs.oracle.com/javase/8/docs/api/java/lang/String.html\">String</a>"
syntax: "public static CollectionFormat valueOf(String name)"
returns:
type: "<xref href=\"com.azure.core.util.serializer.CollectionFormat?alt=com.azure.core.util.serializer.CollectionFormat&text=CollectionFormat\" data-throw-if-not-resolved=\"False\" />"
- uid: "com.azure.core.util.serializer.CollectionFormat.values()"
fullName: "com.azure.core.util.serializer.CollectionFormat.values()"
name: "values()"
nameWithType: "CollectionFormat.values()"
modifiers:
- "static"
syntax: "public static CollectionFormat[] values()"
returns:
type: "<xref href=\"com.azure.core.util.serializer.CollectionFormat?alt=com.azure.core.util.serializer.CollectionFormat&text=CollectionFormat\" data-throw-if-not-resolved=\"False\" />[]"
desc: "Swagger collection format to use for joining [List][] parameters in paths, queries, and headers. See [ https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md\\#fixed-fields-7][https_github.com_swagger-api_swagger-spec_blob_master_versions_2.0.md_fixed-fields-7].\n\n\n[List]: https://docs.oracle.com/javase/8/docs/api/java/util/List.html\n[https_github.com_swagger-api_swagger-spec_blob_master_versions_2.0.md_fixed-fields-7]: https://github.com/swagger-api/swagger-spec/blob/master/versions/2.0.md#fixed-fields-7"
metadata: {}
package: "com.azure.core.util.serializer"
artifact: com.azure:azure-core:1.52.0