com.azure.resourcemanager.recoveryservicesbackup.models.WeekOfMonth 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 WeekOfMonth.
*/
public enum WeekOfMonth {
/**
* Enum value First.
*/
FIRST("First"),
/**
* Enum value Second.
*/
SECOND("Second"),
/**
* Enum value Third.
*/
THIRD("Third"),
/**
* Enum value Fourth.
*/
FOURTH("Fourth"),
/**
* Enum value Last.
*/
LAST("Last"),
/**
* Enum value Invalid.
*/
INVALID("Invalid");
/**
* The actual serialized value for a WeekOfMonth instance.
*/
private final String value;
WeekOfMonth(String value) {
this.value = value;
}
/**
* Parses a serialized value to a WeekOfMonth instance.
*
* @param value the serialized value to parse.
* @return the parsed WeekOfMonth object, or null if unable to parse.
*/
@JsonCreator
public static WeekOfMonth fromString(String value) {
if (value == null) {
return null;
}
WeekOfMonth[] items = WeekOfMonth.values();
for (WeekOfMonth 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