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 AliasPathAttributes.
/** * Defines values for AliasPathAttributes. */
public final class AliasPathAttributes extends ExpandableStringEnum<AliasPathAttributes> {
Static value None for AliasPathAttributes.
/** Static value None for AliasPathAttributes. */
public static final AliasPathAttributes NONE = fromString("None");
Static value Modifiable for AliasPathAttributes.
/** Static value Modifiable for AliasPathAttributes. */
public static final AliasPathAttributes MODIFIABLE = fromString("Modifiable");
Creates or finds a AliasPathAttributes from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding AliasPathAttributes
/** * Creates or finds a AliasPathAttributes from its string representation. * @param name a name to look for * @return the corresponding AliasPathAttributes */
@JsonCreator public static AliasPathAttributes fromString(String name) { return fromString(name, AliasPathAttributes.class); }
Returns:known AliasPathAttributes values
/** * @return known AliasPathAttributes values */
public static Collection<AliasPathAttributes> values() { return values(AliasPathAttributes.class); } }