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