Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.cdn; import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; import com.microsoft.rest.ExpandableStringEnum;
Defines values for TransformType.
/** * Defines values for TransformType. */
public final class TransformType extends ExpandableStringEnum<TransformType> {
Static value Lowercase for TransformType.
/** Static value Lowercase for TransformType. */
public static final TransformType LOWERCASE = fromString("Lowercase");
Static value Uppercase for TransformType.
/** Static value Uppercase for TransformType. */
public static final TransformType UPPERCASE = fromString("Uppercase");
Static value Trim for TransformType.
/** Static value Trim for TransformType. */
public static final TransformType TRIM = fromString("Trim");
Static value UrlDecode for TransformType.
/** Static value UrlDecode for TransformType. */
public static final TransformType URL_DECODE = fromString("UrlDecode");
Static value UrlEncode for TransformType.
/** Static value UrlEncode for TransformType. */
public static final TransformType URL_ENCODE = fromString("UrlEncode");
Static value RemoveNulls for TransformType.
/** Static value RemoveNulls for TransformType. */
public static final TransformType REMOVE_NULLS = fromString("RemoveNulls");
Creates or finds a TransformType from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding TransformType
/** * Creates or finds a TransformType from its string representation. * @param name a name to look for * @return the corresponding TransformType */
@JsonCreator public static TransformType fromString(String name) { return fromString(name, TransformType.class); }
Returns:known TransformType values
/** * @return known TransformType values */
public static Collection<TransformType> values() { return values(TransformType.class); } }