com.azure.resourcemanager.recoveryservicesbackup.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-recoveryservicesbackup Show documentation
Show all versions of azure-resourcemanager-recoveryservicesbackup Show documentation
This package contains Microsoft Azure SDK for RecoveryServicesBackup Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Open API 2.0 Specs for Azure RecoveryServices Backup service. Package tag package-2024-04.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.recoveryservicesbackup.models;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonValue;
/**
* Defines values for DayOfWeek.
*/
public enum DayOfWeek {
/**
* Enum value Sunday.
*/
SUNDAY("Sunday"),
/**
* 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");
/**
* 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.
*/
@JsonCreator
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}
*/
@JsonValue
@Override
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy