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