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