Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. See License.txt in the project root for
license information.
Code generated by Microsoft (R) AutoRest Code Generator.
/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.storage;
import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;
Defines values for Kind.
/**
* Defines values for Kind.
*/
public final class Kind extends ExpandableStringEnum<Kind> {
Static value Storage for Kind. /** Static value Storage for Kind. */
public static final Kind STORAGE = fromString("Storage");
Static value StorageV2 for Kind. /** Static value StorageV2 for Kind. */
public static final Kind STORAGE_V2 = fromString("StorageV2");
Static value BlobStorage for Kind. /** Static value BlobStorage for Kind. */
public static final Kind BLOB_STORAGE = fromString("BlobStorage");
Static value FileStorage for Kind. /** Static value FileStorage for Kind. */
public static final Kind FILE_STORAGE = fromString("FileStorage");
Static value BlockBlobStorage for Kind. /** Static value BlockBlobStorage for Kind. */
public static final Kind BLOCK_BLOB_STORAGE = fromString("BlockBlobStorage");
Creates or finds a Kind from its string representation.
Params: - name – a name to look for
Returns: the corresponding Kind
/**
* Creates or finds a Kind from its string representation.
* @param name a name to look for
* @return the corresponding Kind
*/
@JsonCreator
public static Kind fromString(String name) {
return fromString(name, Kind.class);
}
Returns: known Kind values
/**
* @return known Kind values
*/
public static Collection<Kind> values() {
return values(Kind.class);
}
}