com.azure.resourcemanager.redis.models.DayOfWeek Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-redis Show documentation
Show all versions of azure-resourcemanager-redis Show documentation
This package contains Microsoft Azure Redis Cache SDK.
// 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;
}
}