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