com.chargebee.models.enums
Enum EntityCode
java.lang.Object
java.lang.Enum<EntityCode>
com.chargebee.models.enums.EntityCode
- All Implemented Interfaces:
- Serializable, Comparable<EntityCode>
public enum EntityCode
- extends Enum<EntityCode>
|
Method Summary |
static EntityCode |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static EntityCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared. |
A
public static final EntityCode A
B
public static final EntityCode B
C
public static final EntityCode C
D
public static final EntityCode D
E
public static final EntityCode E
F
public static final EntityCode F
G
public static final EntityCode G
H
public static final EntityCode H
I
public static final EntityCode I
J
public static final EntityCode J
K
public static final EntityCode K
L
public static final EntityCode L
M
public static final EntityCode M
N
public static final EntityCode N
P
public static final EntityCode P
Q
public static final EntityCode Q
R
public static final EntityCode R
MED1
public static final EntityCode MED1
MED2
public static final EntityCode MED2
_UNKNOWN
public static final EntityCode _UNKNOWN
values
public static EntityCode[] 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 (EntityCode c : EntityCode.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static EntityCode 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 © 2019 ChargeBee. All Rights Reserved.