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