![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.redis.models.DefaultName Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-redis Show documentation
Show all versions of azure-resourcemanager-redis Show documentation
This package contains Microsoft Azure Redis Cache SDK.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.redis.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Defines values for DefaultName.
*/
public final class DefaultName extends ExpandableStringEnum {
/**
* Static value default for DefaultName.
*/
public static final DefaultName DEFAULT = fromString("default");
/**
* Creates a new instance of DefaultName value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public DefaultName() {
}
/**
* Creates or finds a DefaultName from its string representation.
*
* @param name a name to look for.
* @return the corresponding DefaultName.
*/
public static DefaultName fromString(String name) {
return fromString(name, DefaultName.class);
}
/**
* Gets known DefaultName values.
*
* @return known DefaultName values.
*/
public static Collection values() {
return values(DefaultName.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy