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