com.chargebee.models
Enum Invoice.Note.EntityType
java.lang.Object
java.lang.Enum<Invoice.Note.EntityType>
com.chargebee.models.Invoice.Note.EntityType
- All Implemented Interfaces:
- Serializable, Comparable<Invoice.Note.EntityType>
- Enclosing class:
- Invoice.Note
public static enum Invoice.Note.EntityType
- extends Enum<Invoice.Note.EntityType>
PLAN
public static final Invoice.Note.EntityType PLAN
ADDON
public static final Invoice.Note.EntityType ADDON
COUPON
public static final Invoice.Note.EntityType COUPON
SUBSCRIPTION
public static final Invoice.Note.EntityType SUBSCRIPTION
CUSTOMER
public static final Invoice.Note.EntityType CUSTOMER
_UNKNOWN
public static final Invoice.Note.EntityType _UNKNOWN
values
public static Invoice.Note.EntityType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (Invoice.Note.EntityType c : Invoice.Note.EntityType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static Invoice.Note.EntityType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2015 ChargeBee. All Rights Reserved.