com.azure.resourcemanager.network.models.ExceptionEntryValueMatchOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-network Show documentation
Show all versions of azure-resourcemanager-network Show documentation
This package contains Microsoft Azure Network Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.network.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Operates on the allowed values for the matchVariable.
*/
public final class ExceptionEntryValueMatchOperator extends ExpandableStringEnum {
/**
* Static value Equals for ExceptionEntryValueMatchOperator.
*/
public static final ExceptionEntryValueMatchOperator EQUALS = fromString("Equals");
/**
* Static value Contains for ExceptionEntryValueMatchOperator.
*/
public static final ExceptionEntryValueMatchOperator CONTAINS = fromString("Contains");
/**
* Static value StartsWith for ExceptionEntryValueMatchOperator.
*/
public static final ExceptionEntryValueMatchOperator STARTS_WITH = fromString("StartsWith");
/**
* Static value EndsWith for ExceptionEntryValueMatchOperator.
*/
public static final ExceptionEntryValueMatchOperator ENDS_WITH = fromString("EndsWith");
/**
* Static value IPMatch for ExceptionEntryValueMatchOperator.
*/
public static final ExceptionEntryValueMatchOperator IPMATCH = fromString("IPMatch");
/**
* Creates a new instance of ExceptionEntryValueMatchOperator value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public ExceptionEntryValueMatchOperator() {
}
/**
* Creates or finds a ExceptionEntryValueMatchOperator from its string representation.
*
* @param name a name to look for.
* @return the corresponding ExceptionEntryValueMatchOperator.
*/
public static ExceptionEntryValueMatchOperator fromString(String name) {
return fromString(name, ExceptionEntryValueMatchOperator.class);
}
/**
* Gets known ExceptionEntryValueMatchOperator values.
*
* @return known ExceptionEntryValueMatchOperator values.
*/
public static Collection values() {
return values(ExceptionEntryValueMatchOperator.class);
}
}