
com.azure.resourcemanager.mysqlflexibleserver.models.IsReadOnly 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.mysqlflexibleserver.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* If is the configuration read only.
*/
public final class IsReadOnly extends ExpandableStringEnum {
/**
* Static value True for IsReadOnly.
*/
public static final IsReadOnly TRUE = fromString("True");
/**
* Static value False for IsReadOnly.
*/
public static final IsReadOnly FALSE = fromString("False");
/**
* Creates a new instance of IsReadOnly value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public IsReadOnly() {
}
/**
* Creates or finds a IsReadOnly from its string representation.
*
* @param name a name to look for.
* @return the corresponding IsReadOnly.
*/
public static IsReadOnly fromString(String name) {
return fromString(name, IsReadOnly.class);
}
/**
* Gets known IsReadOnly values.
*
* @return known IsReadOnly values.
*/
public static Collection values() {
return values(IsReadOnly.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy