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.sql; import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; import com.microsoft.rest.ExpandableStringEnum;
Defines values for IdentityType.
/** * Defines values for IdentityType. */
public final class IdentityType extends ExpandableStringEnum<IdentityType> {
Static value SystemAssigned for IdentityType.
/** Static value SystemAssigned for IdentityType. */
public static final IdentityType SYSTEM_ASSIGNED = fromString("SystemAssigned");
Creates or finds a IdentityType from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding IdentityType
/** * Creates or finds a IdentityType from its string representation. * @param name a name to look for * @return the corresponding IdentityType */
@JsonCreator public static IdentityType fromString(String name) { return fromString(name, IdentityType.class); }
Returns:known IdentityType values
/** * @return known IdentityType values */
public static Collection<IdentityType> values() { return values(IdentityType.class); } }