
com.azure.resourcemanager.frontdoor.models.VariableName 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;
/**
* Describes the supported variable for group by.
*/
public final class VariableName extends ExpandableStringEnum {
/**
* Static value SocketAddr for VariableName.
*/
public static final VariableName SOCKET_ADDR = fromString("SocketAddr");
/**
* Static value GeoLocation for VariableName.
*/
public static final VariableName GEO_LOCATION = fromString("GeoLocation");
/**
* Static value None for VariableName.
*/
public static final VariableName NONE = fromString("None");
/**
* Creates a new instance of VariableName value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public VariableName() {
}
/**
* Creates or finds a VariableName from its string representation.
*
* @param name a name to look for.
* @return the corresponding VariableName.
*/
public static VariableName fromString(String name) {
return fromString(name, VariableName.class);
}
/**
* Gets known VariableName values.
*
* @return known VariableName values.
*/
public static Collection values() {
return values(VariableName.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy