uk.co.keang.callerid.driver
Enum WhyNoNumber

java.lang.Object
  extended by java.lang.Enum<WhyNoNumber>
      extended by uk.co.keang.callerid.driver.WhyNoNumber
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WhyNoNumber>

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

The reason no number is available

Version:
1.0 - 15 Jan 2014
Author:
Keang

Enum Constant Summary
UNAVAILABLE
           
WITHHELD
           
 
Method Summary
(package private)  int getCode()
           
static WhyNoNumber getEnum(int hexCode)
           
static WhyNoNumber valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WhyNoNumber[] 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

WITHHELD

public static final WhyNoNumber WITHHELD

UNAVAILABLE

public static final WhyNoNumber UNAVAILABLE
Method Detail

values

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

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

valueOf

public static WhyNoNumber 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

getCode

int getCode()

getEnum

public static WhyNoNumber getEnum(int hexCode)