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