com.azure.resourcemanager.sql.models.OperationMode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-sql Show documentation
Show all versions of azure-resourcemanager-sql Show documentation
This package contains Microsoft Azure Sql Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.sql.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Operation mode of the operation: Import, Export, or PolybaseImport.
*/
public final class OperationMode extends ExpandableStringEnum {
/**
* Static value PolybaseImport for OperationMode.
*/
public static final OperationMode POLYBASE_IMPORT = fromString("PolybaseImport");
/**
* Static value Import for OperationMode.
*/
public static final OperationMode IMPORT = fromString("Import");
/**
* Static value Export for OperationMode.
*/
public static final OperationMode EXPORT = fromString("Export");
/**
* Creates a new instance of OperationMode value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public OperationMode() {
}
/**
* Creates or finds a OperationMode from its string representation.
*
* @param name a name to look for.
* @return the corresponding OperationMode.
*/
public static OperationMode fromString(String name) {
return fromString(name, OperationMode.class);
}
/**
* Gets known OperationMode values.
*
* @return known OperationMode values.
*/
public static Collection values() {
return values(OperationMode.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy