com.azure.resourcemanager.monitor.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-monitor Show documentation
Show all versions of azure-resourcemanager-monitor Show documentation
This package contains Microsoft Azure Monitor SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.resourcemanager.monitor.models;
/** Defines values for DayOfWeek. */
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");
/** The actual serialized value for a DayOfWeek instance. */
private 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) {
DayOfWeek[] items = DayOfWeek.values();
for (DayOfWeek item : items) {
if (item.toString().equalsIgnoreCase(value)) {
return item;
}
}
return null;
}
@Override
public String toString() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy