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