com.azure.resourcemanager.security.models.Operator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-security Show documentation
Show all versions of azure-resourcemanager-security Show documentation
This package contains Microsoft Azure SDK for Security Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. API spec for Microsoft.Security (Azure Security Center) resource provider. Package tag package-composite-v3.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.security.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* A valid comparer operator to use. A case-insensitive comparison will be applied for String PropertyType.
*/
public final class Operator extends ExpandableStringEnum {
/**
* Static value Equals for Operator.
*/
public static final Operator EQUALS = fromString("Equals");
/**
* Static value GreaterThan for Operator.
*/
public static final Operator GREATER_THAN = fromString("GreaterThan");
/**
* Static value GreaterThanOrEqualTo for Operator.
*/
public static final Operator GREATER_THAN_OR_EQUAL_TO = fromString("GreaterThanOrEqualTo");
/**
* Static value LesserThan for Operator.
*/
public static final Operator LESSER_THAN = fromString("LesserThan");
/**
* Static value LesserThanOrEqualTo for Operator.
*/
public static final Operator LESSER_THAN_OR_EQUAL_TO = fromString("LesserThanOrEqualTo");
/**
* Static value NotEquals for Operator.
*/
public static final Operator NOT_EQUALS = fromString("NotEquals");
/**
* Static value Contains for Operator.
*/
public static final Operator CONTAINS = fromString("Contains");
/**
* Static value StartsWith for Operator.
*/
public static final Operator STARTS_WITH = fromString("StartsWith");
/**
* Static value EndsWith for Operator.
*/
public static final Operator ENDS_WITH = fromString("EndsWith");
/**
* Creates a new instance of Operator value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public Operator() {
}
/**
* Creates or finds a Operator from its string representation.
*
* @param name a name to look for.
* @return the corresponding Operator.
*/
public static Operator fromString(String name) {
return fromString(name, Operator.class);
}
/**
* Gets known Operator values.
*
* @return known Operator values.
*/
public static Collection values() {
return values(Operator.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy