![JAR search and dependency download from the Maven repository](/logo.png)
com.azure.resourcemanager.desktopvirtualization.models.SessionHandlingOperation 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;
/**
* Action to be taken after a user disconnect during the ramp up period.
*/
public final class SessionHandlingOperation extends ExpandableStringEnum {
/**
* Static value None for SessionHandlingOperation.
*/
public static final SessionHandlingOperation NONE = fromString("None");
/**
* Static value Deallocate for SessionHandlingOperation.
*/
public static final SessionHandlingOperation DEALLOCATE = fromString("Deallocate");
/**
* Static value Hibernate for SessionHandlingOperation.
*/
public static final SessionHandlingOperation HIBERNATE = fromString("Hibernate");
/**
* Creates a new instance of SessionHandlingOperation value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public SessionHandlingOperation() {
}
/**
* Creates or finds a SessionHandlingOperation from its string representation.
*
* @param name a name to look for.
* @return the corresponding SessionHandlingOperation.
*/
public static SessionHandlingOperation fromString(String name) {
return fromString(name, SessionHandlingOperation.class);
}
/**
* Gets known SessionHandlingOperation values.
*
* @return known SessionHandlingOperation values.
*/
public static Collection values() {
return values(SessionHandlingOperation.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy