All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.frontdoor.models.RulesEngineMatchVariable Maven / Gradle / Ivy

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.

package com.azure.resourcemanager.frontdoor.models;

import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;

/**
 * Match Variable.
 */
public final class RulesEngineMatchVariable extends ExpandableStringEnum {
    /**
     * Static value IsMobile for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable IS_MOBILE = fromString("IsMobile");

    /**
     * Static value RemoteAddr for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REMOTE_ADDR = fromString("RemoteAddr");

    /**
     * Static value RequestMethod for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_METHOD = fromString("RequestMethod");

    /**
     * Static value QueryString for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable QUERY_STRING = fromString("QueryString");

    /**
     * Static value PostArgs for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable POST_ARGS = fromString("PostArgs");

    /**
     * Static value RequestUri for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_URI = fromString("RequestUri");

    /**
     * Static value RequestPath for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_PATH = fromString("RequestPath");

    /**
     * Static value RequestFilename for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_FILENAME = fromString("RequestFilename");

    /**
     * Static value RequestFilenameExtension for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_FILENAME_EXTENSION = fromString("RequestFilenameExtension");

    /**
     * Static value RequestHeader for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_HEADER = fromString("RequestHeader");

    /**
     * Static value RequestBody for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_BODY = fromString("RequestBody");

    /**
     * Static value RequestScheme for RulesEngineMatchVariable.
     */
    public static final RulesEngineMatchVariable REQUEST_SCHEME = fromString("RequestScheme");

    /**
     * Creates a new instance of RulesEngineMatchVariable value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public RulesEngineMatchVariable() {
    }

    /**
     * Creates or finds a RulesEngineMatchVariable from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding RulesEngineMatchVariable.
     */
    public static RulesEngineMatchVariable fromString(String name) {
        return fromString(name, RulesEngineMatchVariable.class);
    }

    /**
     * Gets known RulesEngineMatchVariable values.
     * 
     * @return known RulesEngineMatchVariable values.
     */
    public static Collection values() {
        return values(RulesEngineMatchVariable.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy