
com.azure.resourcemanager.billing.models.InvoiceSectionStateReasonCode 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;
/**
* Reason for the specified invoice section status.
*/
public final class InvoiceSectionStateReasonCode extends ExpandableStringEnum {
/**
* Static value Other for InvoiceSectionStateReasonCode.
*/
public static final InvoiceSectionStateReasonCode OTHER = fromString("Other");
/**
* Static value PastDue for InvoiceSectionStateReasonCode.
*/
public static final InvoiceSectionStateReasonCode PAST_DUE = fromString("PastDue");
/**
* Static value UnusualActivity for InvoiceSectionStateReasonCode.
*/
public static final InvoiceSectionStateReasonCode UNUSUAL_ACTIVITY = fromString("UnusualActivity");
/**
* Static value SpendingLimitReached for InvoiceSectionStateReasonCode.
*/
public static final InvoiceSectionStateReasonCode SPENDING_LIMIT_REACHED = fromString("SpendingLimitReached");
/**
* Static value SpendingLimitExpired for InvoiceSectionStateReasonCode.
*/
public static final InvoiceSectionStateReasonCode SPENDING_LIMIT_EXPIRED = fromString("SpendingLimitExpired");
/**
* Creates a new instance of InvoiceSectionStateReasonCode value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public InvoiceSectionStateReasonCode() {
}
/**
* Creates or finds a InvoiceSectionStateReasonCode from its string representation.
*
* @param name a name to look for.
* @return the corresponding InvoiceSectionStateReasonCode.
*/
public static InvoiceSectionStateReasonCode fromString(String name) {
return fromString(name, InvoiceSectionStateReasonCode.class);
}
/**
* Gets known InvoiceSectionStateReasonCode values.
*
* @return known InvoiceSectionStateReasonCode values.
*/
public static Collection values() {
return values(InvoiceSectionStateReasonCode.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy