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.cdn;
import java.util.Collection;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.microsoft.rest.ExpandableStringEnum;
Defines values for RequestUriOperator.
/**
* Defines values for RequestUriOperator.
*/
public final class RequestUriOperator extends ExpandableStringEnum<RequestUriOperator> {
Static value Any for RequestUriOperator. /** Static value Any for RequestUriOperator. */
public static final RequestUriOperator ANY = fromString("Any");
Static value Equal for RequestUriOperator. /** Static value Equal for RequestUriOperator. */
public static final RequestUriOperator EQUAL = fromString("Equal");
Static value Contains for RequestUriOperator. /** Static value Contains for RequestUriOperator. */
public static final RequestUriOperator CONTAINS = fromString("Contains");
Static value BeginsWith for RequestUriOperator. /** Static value BeginsWith for RequestUriOperator. */
public static final RequestUriOperator BEGINS_WITH = fromString("BeginsWith");
Static value EndsWith for RequestUriOperator. /** Static value EndsWith for RequestUriOperator. */
public static final RequestUriOperator ENDS_WITH = fromString("EndsWith");
Static value LessThan for RequestUriOperator. /** Static value LessThan for RequestUriOperator. */
public static final RequestUriOperator LESS_THAN = fromString("LessThan");
Static value LessThanOrEqual for RequestUriOperator. /** Static value LessThanOrEqual for RequestUriOperator. */
public static final RequestUriOperator LESS_THAN_OR_EQUAL = fromString("LessThanOrEqual");
Static value GreaterThan for RequestUriOperator. /** Static value GreaterThan for RequestUriOperator. */
public static final RequestUriOperator GREATER_THAN = fromString("GreaterThan");
Static value GreaterThanOrEqual for RequestUriOperator. /** Static value GreaterThanOrEqual for RequestUriOperator. */
public static final RequestUriOperator GREATER_THAN_OR_EQUAL = fromString("GreaterThanOrEqual");
Static value RegEx for RequestUriOperator. /** Static value RegEx for RequestUriOperator. */
public static final RequestUriOperator REG_EX = fromString("RegEx");
Creates or finds a RequestUriOperator from its string representation.
Params: - name – a name to look for
Returns: the corresponding RequestUriOperator
/**
* Creates or finds a RequestUriOperator from its string representation.
* @param name a name to look for
* @return the corresponding RequestUriOperator
*/
@JsonCreator
public static RequestUriOperator fromString(String name) {
return fromString(name, RequestUriOperator.class);
}
Returns: known RequestUriOperator values
/**
* @return known RequestUriOperator values
*/
public static Collection<RequestUriOperator> values() {
return values(RequestUriOperator.class);
}
}