com.accurisnetworks.accuroam
Enum ResultMessages.RegistrationResult

java.lang.Object
  extended by java.lang.Enum<ResultMessages.RegistrationResult>
      extended by com.accurisnetworks.accuroam.ResultMessages.RegistrationResult
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ResultMessages.RegistrationResult>
Enclosing class:
ResultMessages

public static enum ResultMessages.RegistrationResult
extends java.lang.Enum<ResultMessages.RegistrationResult>


Enum Constant Summary
KEY_GENERATION_FAILED
           
KEY_STORAGE_FAILED
           
NO_SIM_CARD_PRESENT
           
REGISTRATION_FAILED_GENERIC
           
REGISTRATION_FAILED_NO_SUBSCRIPTION
           
REGISTRATION_SUCCESSFUL
           
SERVER_RESPONSE_FIXED_FAILURE
           
SMS_SEND_ERROR
           
 
Method Summary
static ResultMessages.RegistrationResult valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ResultMessages.RegistrationResult[] 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

REGISTRATION_SUCCESSFUL

public static final ResultMessages.RegistrationResult REGISTRATION_SUCCESSFUL

NO_SIM_CARD_PRESENT

public static final ResultMessages.RegistrationResult NO_SIM_CARD_PRESENT

SMS_SEND_ERROR

public static final ResultMessages.RegistrationResult SMS_SEND_ERROR

REGISTRATION_FAILED_GENERIC

public static final ResultMessages.RegistrationResult REGISTRATION_FAILED_GENERIC

REGISTRATION_FAILED_NO_SUBSCRIPTION

public static final ResultMessages.RegistrationResult REGISTRATION_FAILED_NO_SUBSCRIPTION

SERVER_RESPONSE_FIXED_FAILURE

public static final ResultMessages.RegistrationResult SERVER_RESPONSE_FIXED_FAILURE

KEY_GENERATION_FAILED

public static final ResultMessages.RegistrationResult KEY_GENERATION_FAILED

KEY_STORAGE_FAILED

public static final ResultMessages.RegistrationResult KEY_STORAGE_FAILED
Method Detail

values

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

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

valueOf

public static ResultMessages.RegistrationResult 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