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.appservice; import java.util.Collection; import com.fasterxml.jackson.annotation.JsonCreator; import com.microsoft.rest.ExpandableStringEnum;
Defines values for PublishingProfileFormat.
/** * Defines values for PublishingProfileFormat. */
public final class PublishingProfileFormat extends ExpandableStringEnum<PublishingProfileFormat> {
Static value FileZilla3 for PublishingProfileFormat.
/** Static value FileZilla3 for PublishingProfileFormat. */
public static final PublishingProfileFormat FILE_ZILLA3 = fromString("FileZilla3");
Static value WebDeploy for PublishingProfileFormat.
/** Static value WebDeploy for PublishingProfileFormat. */
public static final PublishingProfileFormat WEB_DEPLOY = fromString("WebDeploy");
Static value Ftp for PublishingProfileFormat.
/** Static value Ftp for PublishingProfileFormat. */
public static final PublishingProfileFormat FTP = fromString("Ftp");
Creates or finds a PublishingProfileFormat from its string representation.
Params:
  • name – a name to look for
Returns:the corresponding PublishingProfileFormat
/** * Creates or finds a PublishingProfileFormat from its string representation. * @param name a name to look for * @return the corresponding PublishingProfileFormat */
@JsonCreator public static PublishingProfileFormat fromString(String name) { return fromString(name, PublishingProfileFormat.class); }
Returns:known PublishingProfileFormat values
/** * @return known PublishingProfileFormat values */
public static Collection<PublishingProfileFormat> values() { return values(PublishingProfileFormat.class); } }