com.norbl.cbp.ppe.usermonitor
Enum UserDb.El

java.lang.Object
  extended by java.lang.Enum<UserDb.El>
      extended by com.norbl.cbp.ppe.usermonitor.UserDb.El
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UserDb.El>
Enclosing class:
UserDb

public static enum UserDb.El
extends java.lang.Enum<UserDb.El>


Enum Constant Summary
callerReference
           
callerReferenceSender
           
callerReferenceSettlement
           
creditInstrumentID
           
creditSenderTokenID
           
n_instance_hours_billed
           
n_instance_hours_unbilled
           
peid
           
settlementTokenID
           
status
           
status_time
           
uid
           
 
Method Summary
static UserDb.El valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UserDb.El[] 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

uid

public static final UserDb.El uid

peid

public static final UserDb.El peid

callerReference

public static final UserDb.El callerReference

callerReferenceSender

public static final UserDb.El callerReferenceSender

callerReferenceSettlement

public static final UserDb.El callerReferenceSettlement

status

public static final UserDb.El status

status_time

public static final UserDb.El status_time

n_instance_hours_unbilled

public static final UserDb.El n_instance_hours_unbilled

n_instance_hours_billed

public static final UserDb.El n_instance_hours_billed

settlementTokenID

public static final UserDb.El settlementTokenID

creditSenderTokenID

public static final UserDb.El creditSenderTokenID

creditInstrumentID

public static final UserDb.El creditInstrumentID
Method Detail

values

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

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

valueOf

public static UserDb.El 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