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

com.azure.resourcemanager.redis.models.DayOfWeek Maven / Gradle / Ivy

There is a newer version: 2.44.0
Show 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.redis.models;

/**
 * Day of the week when a cache can be patched.
 */
public enum DayOfWeek {
    /**
     * Enum value Monday.
     */
    MONDAY("Monday"),

    /**
     * Enum value Tuesday.
     */
    TUESDAY("Tuesday"),

    /**
     * Enum value Wednesday.
     */
    WEDNESDAY("Wednesday"),

    /**
     * Enum value Thursday.
     */
    THURSDAY("Thursday"),

    /**
     * Enum value Friday.
     */
    FRIDAY("Friday"),

    /**
     * Enum value Saturday.
     */
    SATURDAY("Saturday"),

    /**
     * Enum value Sunday.
     */
    SUNDAY("Sunday"),

    /**
     * Enum value Everyday.
     */
    EVERYDAY("Everyday"),

    /**
     * Enum value Weekend.
     */
    WEEKEND("Weekend");

    /**
     * The actual serialized value for a DayOfWeek instance.
     */
    private final String value;

    DayOfWeek(String value) {
        this.value = value;
    }

    /**
     * Parses a serialized value to a DayOfWeek instance.
     * 
     * @param value the serialized value to parse.
     * @return the parsed DayOfWeek object, or null if unable to parse.
     */
    public static DayOfWeek fromString(String value) {
        if (value == null) {
            return null;
        }
        DayOfWeek[] items = DayOfWeek.values();
        for (DayOfWeek item : items) {
            if (item.toString().equalsIgnoreCase(value)) {
                return item;
            }
        }
        return null;
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public String toString() {
        return this.value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy