com.e_c_group.bwptk
Enum CallingPlanCallType

java.lang.Object
  extended by java.lang.Enum<CallingPlanCallType>
      extended by com.e_c_group.bwptk.CallingPlanCallType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<CallingPlanCallType>

public enum CallingPlanCallType
extends java.lang.Enum<CallingPlanCallType>


Enum Constant Summary
casual
           
chargeableDirectoryAssisted
           
group
           
international
           
local
           
operatorAssisted
           
premiumServicesI
           
premiumServicesII
           
specialServicesI
           
specialServicesII
           
toll
           
tollFree
           
unknown
           
urlDialing
           
 
Method Summary
static CallingPlanCallType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static CallingPlanCallType[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

group

public static final CallingPlanCallType group

local

public static final CallingPlanCallType local

tollFree

public static final CallingPlanCallType tollFree

toll

public static final CallingPlanCallType toll

international

public static final CallingPlanCallType international

operatorAssisted

public static final CallingPlanCallType operatorAssisted

chargeableDirectoryAssisted

public static final CallingPlanCallType chargeableDirectoryAssisted

specialServicesI

public static final CallingPlanCallType specialServicesI

specialServicesII

public static final CallingPlanCallType specialServicesII

premiumServicesI

public static final CallingPlanCallType premiumServicesI

premiumServicesII

public static final CallingPlanCallType premiumServicesII

casual

public static final CallingPlanCallType casual

urlDialing

public static final CallingPlanCallType urlDialing

unknown

public static final CallingPlanCallType unknown
Method Detail

values

public static CallingPlanCallType[] 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 (CallingPlanCallType c : CallingPlanCallType.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static CallingPlanCallType valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null