![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.desktopvirtualization.models.CommandLineSetting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
Show all versions of azure-resourcemanager-desktopvirtualization Show documentation
This package contains Microsoft Azure SDK for DesktopVirtualization Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Package tag package-2024-04.
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.desktopvirtualization.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* Specifies whether this published application can be launched with command line arguments provided by the client,
* command line arguments specified at publish time, or no command line arguments at all.
*/
public final class CommandLineSetting extends ExpandableStringEnum {
/**
* Static value DoNotAllow for CommandLineSetting.
*/
public static final CommandLineSetting DO_NOT_ALLOW = fromString("DoNotAllow");
/**
* Static value Allow for CommandLineSetting.
*/
public static final CommandLineSetting ALLOW = fromString("Allow");
/**
* Static value Require for CommandLineSetting.
*/
public static final CommandLineSetting REQUIRE = fromString("Require");
/**
* Creates a new instance of CommandLineSetting value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public CommandLineSetting() {
}
/**
* Creates or finds a CommandLineSetting from its string representation.
*
* @param name a name to look for.
* @return the corresponding CommandLineSetting.
*/
public static CommandLineSetting fromString(String name) {
return fromString(name, CommandLineSetting.class);
}
/**
* Gets known CommandLineSetting values.
*
* @return known CommandLineSetting values.
*/
public static Collection values() {
return values(CommandLineSetting.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy