
com.azure.resourcemanager.billing.models.EnrollmentAuthLevelState Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.billing.models;
import com.azure.core.util.ExpandableStringEnum;
import java.util.Collection;
/**
* The state showing the enrollment auth level.
*/
public final class EnrollmentAuthLevelState extends ExpandableStringEnum {
/**
* Static value Other for EnrollmentAuthLevelState.
*/
public static final EnrollmentAuthLevelState OTHER = fromString("Other");
/**
* Static value MicrosoftAccountOnly for EnrollmentAuthLevelState.
*/
public static final EnrollmentAuthLevelState MICROSOFT_ACCOUNT_ONLY = fromString("MicrosoftAccountOnly");
/**
* Static value MixedAccount for EnrollmentAuthLevelState.
*/
public static final EnrollmentAuthLevelState MIXED_ACCOUNT = fromString("MixedAccount");
/**
* Static value OrganizationalAccountCrossTenant for EnrollmentAuthLevelState.
*/
public static final EnrollmentAuthLevelState ORGANIZATIONAL_ACCOUNT_CROSS_TENANT
= fromString("OrganizationalAccountCrossTenant");
/**
* Static value OrganizationalAccountOnly for EnrollmentAuthLevelState.
*/
public static final EnrollmentAuthLevelState ORGANIZATIONAL_ACCOUNT_ONLY = fromString("OrganizationalAccountOnly");
/**
* Creates a new instance of EnrollmentAuthLevelState value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public EnrollmentAuthLevelState() {
}
/**
* Creates or finds a EnrollmentAuthLevelState from its string representation.
*
* @param name a name to look for.
* @return the corresponding EnrollmentAuthLevelState.
*/
public static EnrollmentAuthLevelState fromString(String name) {
return fromString(name, EnrollmentAuthLevelState.class);
}
/**
* Gets known EnrollmentAuthLevelState values.
*
* @return known EnrollmentAuthLevelState values.
*/
public static Collection values() {
return values(EnrollmentAuthLevelState.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy