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.
The newest version!
// 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 java.util.Collection;
/**
* The rotation, if any, to be applied to the input video, before it is encoded. Default is Auto.
*/
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 a new instance of Rotation value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public Rotation() {
}
/**
* Creates or finds a Rotation from its string representation.
*
* @param name a name to look for.
* @return the corresponding Rotation.
*/
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 - 2024 Weber Informatics LLC | Privacy Policy