All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.azure.resourcemanager.desktopvirtualization.models.ScalingScheduleDaysOfWeekItem Maven / Gradle / Ivy

Go to download

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;

/**
 * Defines values for ScalingScheduleDaysOfWeekItem.
 */
public final class ScalingScheduleDaysOfWeekItem extends ExpandableStringEnum {
    /**
     * Static value Sunday for ScalingScheduleDaysOfWeekItem.
     */
    public static final ScalingScheduleDaysOfWeekItem SUNDAY = fromString("Sunday");

    /**
     * Static value Monday for ScalingScheduleDaysOfWeekItem.
     */
    public static final ScalingScheduleDaysOfWeekItem MONDAY = fromString("Monday");

    /**
     * Static value Tuesday for ScalingScheduleDaysOfWeekItem.
     */
    public static final ScalingScheduleDaysOfWeekItem TUESDAY = fromString("Tuesday");

    /**
     * Static value Wednesday for ScalingScheduleDaysOfWeekItem.
     */
    public static final ScalingScheduleDaysOfWeekItem WEDNESDAY = fromString("Wednesday");

    /**
     * Static value Thursday for ScalingScheduleDaysOfWeekItem.
     */
    public static final ScalingScheduleDaysOfWeekItem THURSDAY = fromString("Thursday");

    /**
     * Static value Friday for ScalingScheduleDaysOfWeekItem.
     */
    public static final ScalingScheduleDaysOfWeekItem FRIDAY = fromString("Friday");

    /**
     * Static value Saturday for ScalingScheduleDaysOfWeekItem.
     */
    public static final ScalingScheduleDaysOfWeekItem SATURDAY = fromString("Saturday");

    /**
     * Creates a new instance of ScalingScheduleDaysOfWeekItem value.
     * 
     * @deprecated Use the {@link #fromString(String)} factory method.
     */
    @Deprecated
    public ScalingScheduleDaysOfWeekItem() {
    }

    /**
     * Creates or finds a ScalingScheduleDaysOfWeekItem from its string representation.
     * 
     * @param name a name to look for.
     * @return the corresponding ScalingScheduleDaysOfWeekItem.
     */
    public static ScalingScheduleDaysOfWeekItem fromString(String name) {
        return fromString(name, ScalingScheduleDaysOfWeekItem.class);
    }

    /**
     * Gets known ScalingScheduleDaysOfWeekItem values.
     * 
     * @return known ScalingScheduleDaysOfWeekItem values.
     */
    public static Collection values() {
        return values(ScalingScheduleDaysOfWeekItem.class);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy