org.jsmpp.bean
Enum OptionalParameter.Callback_num_pres_ind.Screening_Indicator

java.lang.Object
  extended by java.lang.Enum<OptionalParameter.Callback_num_pres_ind.Screening_Indicator>
      extended by org.jsmpp.bean.OptionalParameter.Callback_num_pres_ind.Screening_Indicator
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<OptionalParameter.Callback_num_pres_ind.Screening_Indicator>
Enclosing class:
OptionalParameter.Callback_num_pres_ind

public static enum OptionalParameter.Callback_num_pres_ind.Screening_Indicator
extends java.lang.Enum<OptionalParameter.Callback_num_pres_ind.Screening_Indicator>


Enum Constant Summary
NETWORK_PROVIDED
          Network Provided = 3 (binary 11)
USER_PROVIDED_VERIFIED_AND_FAILED
          User provided, verified and failed = 2 (binary 10)
USER_PROVIDED_VERIFIED_AND_PASSED
          User provided, verified and passed = 1 (binary 01)
USER_PROVIDED_VERIFIED_NOT_SCREENED
          User provided, not screened = 0 (binary 00)
 
Field Summary
protected  byte value
           
 
Method Summary
static OptionalParameter.Callback_num_pres_ind.Screening_Indicator toEnum(byte value)
           
 byte value()
           
static OptionalParameter.Callback_num_pres_ind.Screening_Indicator valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static OptionalParameter.Callback_num_pres_ind.Screening_Indicator[] 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

USER_PROVIDED_VERIFIED_NOT_SCREENED

public static final OptionalParameter.Callback_num_pres_ind.Screening_Indicator USER_PROVIDED_VERIFIED_NOT_SCREENED
User provided, not screened = 0 (binary 00)


USER_PROVIDED_VERIFIED_AND_PASSED

public static final OptionalParameter.Callback_num_pres_ind.Screening_Indicator USER_PROVIDED_VERIFIED_AND_PASSED
User provided, verified and passed = 1 (binary 01)


USER_PROVIDED_VERIFIED_AND_FAILED

public static final OptionalParameter.Callback_num_pres_ind.Screening_Indicator USER_PROVIDED_VERIFIED_AND_FAILED
User provided, verified and failed = 2 (binary 10)


NETWORK_PROVIDED

public static final OptionalParameter.Callback_num_pres_ind.Screening_Indicator NETWORK_PROVIDED
Network Provided = 3 (binary 11)

Field Detail

value

protected byte value
Method Detail

values

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

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

valueOf

public static OptionalParameter.Callback_num_pres_ind.Screening_Indicator 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

value

public byte value()

toEnum

public static OptionalParameter.Callback_num_pres_ind.Screening_Indicator toEnum(byte value)