com.azure.messaging.eventgrid.systemevents.StorageTaskAssignmentCompletedStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-messaging-eventgrid Show documentation
Show all versions of azure-messaging-eventgrid Show documentation
This package contains Microsoft Azure EventGrid SDK.
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.messaging.eventgrid.systemevents;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The status for a storage task.
*/
public final class StorageTaskAssignmentCompletedStatus
extends ExpandableStringEnum {
/**
* Static value Succeeded for StorageTaskAssignmentCompletedStatus.
*/
public static final StorageTaskAssignmentCompletedStatus SUCCEEDED = fromString("Succeeded");
/**
* Static value Failed for StorageTaskAssignmentCompletedStatus.
*/
public static final StorageTaskAssignmentCompletedStatus FAILED = fromString("Failed");
/**
* Creates a new instance of StorageTaskAssignmentCompletedStatus value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public StorageTaskAssignmentCompletedStatus() {
}
/**
* Creates or finds a StorageTaskAssignmentCompletedStatus from its string representation.
*
* @param name a name to look for.
* @return the corresponding StorageTaskAssignmentCompletedStatus.
*/
public static StorageTaskAssignmentCompletedStatus fromString(String name) {
return fromString(name, StorageTaskAssignmentCompletedStatus.class);
}
/**
* Gets known StorageTaskAssignmentCompletedStatus values.
*
* @return known StorageTaskAssignmentCompletedStatus values.
*/
public static Collection values() {
return values(StorageTaskAssignmentCompletedStatus.class);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy