
com.azure.resourcemanager.billing.models.PaymentMethodFamily 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;
/**
* Payment on Account type.
*/
public final class PaymentMethodFamily extends ExpandableStringEnum {
/**
* Static value Other for PaymentMethodFamily.
*/
public static final PaymentMethodFamily OTHER = fromString("Other");
/**
* Static value None for PaymentMethodFamily.
*/
public static final PaymentMethodFamily NONE = fromString("None");
/**
* Static value CreditCard for PaymentMethodFamily.
*/
public static final PaymentMethodFamily CREDIT_CARD = fromString("CreditCard");
/**
* Static value Credits for PaymentMethodFamily.
*/
public static final PaymentMethodFamily CREDITS = fromString("Credits");
/**
* Static value CheckWire for PaymentMethodFamily.
*/
public static final PaymentMethodFamily CHECK_WIRE = fromString("CheckWire");
/**
* Static value EWallet for PaymentMethodFamily.
*/
public static final PaymentMethodFamily EWALLET = fromString("EWallet");
/**
* Static value TaskOrder for PaymentMethodFamily.
*/
public static final PaymentMethodFamily TASK_ORDER = fromString("TaskOrder");
/**
* Static value DirectDebit for PaymentMethodFamily.
*/
public static final PaymentMethodFamily DIRECT_DEBIT = fromString("DirectDebit");
/**
* Creates a new instance of PaymentMethodFamily value.
*
* @deprecated Use the {@link #fromString(String)} factory method.
*/
@Deprecated
public PaymentMethodFamily() {
}
/**
* Creates or finds a PaymentMethodFamily from its string representation.
*
* @param name a name to look for.
* @return the corresponding PaymentMethodFamily.
*/
public static PaymentMethodFamily fromString(String name) {
return fromString(name, PaymentMethodFamily.class);
}
/**
* Gets known PaymentMethodFamily values.
*
* @return known PaymentMethodFamily values.
*/
public static Collection values() {
return values(PaymentMethodFamily.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy