com.azure.messaging.eventgrid.systemevents.AcsRouterLabelOperator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
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.messaging.eventgrid.systemevents;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Router Job Worker Selector Label Operator.
*/
public final class AcsRouterLabelOperator extends ExpandableStringEnum {
/**
* =.
*/
public static final AcsRouterLabelOperator EQUAL = fromString("Equal");
/**
* !=.
*/
public static final AcsRouterLabelOperator NOT_EQUAL = fromString("NotEqual");
/**
* >.
*/
public static final AcsRouterLabelOperator GREATER = fromString("Greater");
/**
* <.
*/
public static final AcsRouterLabelOperator LESS = fromString("Less");
/**
* >=.
*/
public static final AcsRouterLabelOperator GREATER_THAN_OR_EQUAL = fromString("GreaterThanOrEqual");
/**
* <=.
*/
public static final AcsRouterLabelOperator LESS_THAN_OR_EQUAL = fromString("LessThanOrEqual");
/**
* Creates a new instance of AcsRouterLabelOperator value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public AcsRouterLabelOperator() {
}
/**
* Creates or finds a AcsRouterLabelOperator from its string representation.
*
* @param name a name to look for.
* @return the corresponding AcsRouterLabelOperator.
*/
public static AcsRouterLabelOperator fromString(String name) {
return fromString(name, AcsRouterLabelOperator.class);
}
/**
* Gets known AcsRouterLabelOperator values.
*
* @return known AcsRouterLabelOperator values.
*/
public static Collection values() {
return values(AcsRouterLabelOperator.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy