com.chargebee.models.enums
Enum EntityCode

java.lang.Object
  extended by java.lang.Enum<EntityCode>
      extended by com.chargebee.models.enums.EntityCode
All Implemented Interfaces:
Serializable, Comparable<EntityCode>

public enum EntityCode
extends Enum<EntityCode>


Enum Constant Summary
_UNKNOWN
           
A
           
B
           
C
           
D
           
E
           
F
           
G
           
H
           
I
           
J
           
K
           
L
           
M
           
MED1
           
MED2
           
N
           
P
           
Q
           
R
           
 
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.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

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
Method Detail

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.