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.network; import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; import com.microsoft.rest.ExpandableStringEnum;
Defines values for OutputType.
/** * Defines values for OutputType. */
public final class OutputType extends ExpandableStringEnum<OutputType> {
Static value Workspace for OutputType.
/** Static value Workspace for OutputType. */
public static final OutputType WORKSPACE = fromString("Workspace");
Creates or finds a OutputType from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding OutputType
/** * Creates or finds a OutputType from its string representation. * @param name a name to look for * @return the corresponding OutputType */
@JsonCreator public static OutputType fromString(String name) { return fromString(name, OutputType.class); }
Returns:known OutputType values
/** * @return known OutputType values */
public static Collection<OutputType> values() { return values(OutputType.class); } }