
com.azure.resourcemanager.mediaservices.models.Rotation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-mediaservices Show documentation
Show all versions of azure-resourcemanager-mediaservices Show documentation
This package contains Microsoft Azure SDK for MediaServices Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. This Swagger was generated by the API Framework. Package tag package-account-2023-01.
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.mediaservices.models;
import com.azure.core.util.ExpandableStringEnum;
import com.fasterxml.jackson.annotation.JsonCreator;
import java.util.Collection;
/** Defines values for Rotation. */
public final class Rotation extends ExpandableStringEnum {
/** Static value Auto for Rotation. */
public static final Rotation AUTO = fromString("Auto");
/** Static value None for Rotation. */
public static final Rotation NONE = fromString("None");
/** Static value Rotate0 for Rotation. */
public static final Rotation ROTATE0 = fromString("Rotate0");
/** Static value Rotate90 for Rotation. */
public static final Rotation ROTATE90 = fromString("Rotate90");
/** Static value Rotate180 for Rotation. */
public static final Rotation ROTATE180 = fromString("Rotate180");
/** Static value Rotate270 for Rotation. */
public static final Rotation ROTATE270 = fromString("Rotate270");
/**
* Creates or finds a Rotation from its string representation.
*
* @param name a name to look for.
* @return the corresponding Rotation.
*/
@JsonCreator
public static Rotation fromString(String name) {
return fromString(name, Rotation.class);
}
/**
* Gets known Rotation values.
*
* @return known Rotation values.
*/
public static Collection values() {
return values(Rotation.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy