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 JobStepActionSource.
/** * Defines values for JobStepActionSource. */
public final class JobStepActionSource extends ExpandableStringEnum<JobStepActionSource> {
Static value Inline for JobStepActionSource.
/** Static value Inline for JobStepActionSource. */
public static final JobStepActionSource INLINE = fromString("Inline");
Creates or finds a JobStepActionSource from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding JobStepActionSource
/** * Creates or finds a JobStepActionSource from its string representation. * @param name a name to look for * @return the corresponding JobStepActionSource */
@JsonCreator public static JobStepActionSource fromString(String name) { return fromString(name, JobStepActionSource.class); }
Returns:known JobStepActionSource values
/** * @return known JobStepActionSource values */
public static Collection<JobStepActionSource> values() { return values(JobStepActionSource.class); } }