AuthenticationType Class

public final class AuthenticationType
extends ExpandableStringEnum<AuthenticationType>

The authentication type.

Field Summary

Modifier and Type Field and Description
static final AuthenticationType AZURE_ACTIVE_DIRECTORY

Static value AzureActiveDirectory for AuthenticationType.

static final AuthenticationType INVALID

Static value Invalid for AuthenticationType.

Constructor Summary

Constructor Description
AuthenticationType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of AuthenticationType value.

Method Summary

Modifier and Type Method and Description
static AuthenticationType fromString(String name)

Creates or finds a AuthenticationType from its string representation.

static Collection<AuthenticationType> values()

Gets known AuthenticationType values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

AZURE_ACTIVE_DIRECTORY

public static final AuthenticationType AZURE_ACTIVE_DIRECTORY

Static value AzureActiveDirectory for AuthenticationType.

INVALID

public static final AuthenticationType INVALID

Static value Invalid for AuthenticationType.

Constructor Details

AuthenticationType

@Deprecated
public AuthenticationType()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of AuthenticationType value.

Method Details

fromString

public static AuthenticationType fromString(String name)

Creates or finds a AuthenticationType from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding AuthenticationType.

values

public static Collection values()

Gets known AuthenticationType values.

Returns:

known AuthenticationType values.

Applies to