lib.unwind
Class Error

java.lang.Object
  extended by java.lang.Number
      extended by lib.unwind.Error
All Implemented Interfaces:
Serializable, Comparable

public class Error
extends Number
implements Comparable

See Also:
Serialized Form

Field Summary
static Error UNW_EBADFRAME
           
static int UNW_EBADFRAME_
           
static Error UNW_EBADREG
           
static int UNW_EBADREG_
           
static Error UNW_EBADVERSION
           
static int UNW_EBADVERSION_
           
static Error UNW_EINVAL
           
static int UNW_EINVAL_
           
static Error UNW_EINVALIDIP
           
static int UNW_EINVALIDIP_
           
static Error UNW_ENOINFO
           
static int UNW_ENOINFO_
           
static Error UNW_ENOMEM
           
static int UNW_ENOMEM_
           
static Error UNW_EREADONLYREG
           
static int UNW_EREADONLYREG_
           
static Error UNW_ESTOPUNWIND
           
static int UNW_ESTOPUNWIND_
           
static Error UNW_ESUCCESS
           
static int UNW_ESUCCESS_
           
static Error UNW_EUNSPEC
           
static int UNW_EUNSPEC_
           
 
Method Summary
 int compareTo(Object o)
           
 double doubleValue()
          Return the equivalent of the enum.
 boolean equals(Object o)
          Return true if OBJECT has the same value.
 float floatValue()
          Return the equivalent of the enum.
 int hashCode()
           
 int intValue()
          Return the equivalent of the enum.
 long longValue()
          Return the equivalent of the enum.
 String toName()
          Return the name of just the enum.
static String toName(long i)
          Returns just the name part of the num corresponding to I.
static String toName(long i, String def)
          Returns just the name part of the num corresponding to I, or DEF is there is no such field.
 String toPrint()
          Return a printable version of the enum.
static String toPrintString(long i)
          Returns the printable (or user readable) name for the field corresponding to the value I.
static String toPrintString(long i, String def)
          Returns the printable (or user readable) name for the field corresponding to the value I, or DEF is there is no such field.
 String toString()
          Return the qualified name of the enum.
static String toString(long i)
          Returns the full underscore delimited name of the field corresponding to the value I.
static Error valueOf(long i)
          Return the Error object that matches the integer.
static Error valueOf(String string)
          Return the Error object that matches the string.
static Error[] values()
          Return an array of all the Error elements.
 
Methods inherited from class java.lang.Number
byteValue, shortValue
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

UNW_ESUCCESS_

public static final int UNW_ESUCCESS_
See Also:
Constant Field Values

UNW_ESUCCESS

public static final Error UNW_ESUCCESS

UNW_EUNSPEC_

public static final int UNW_EUNSPEC_
See Also:
Constant Field Values

UNW_EUNSPEC

public static final Error UNW_EUNSPEC

UNW_ENOMEM_

public static final int UNW_ENOMEM_
See Also:
Constant Field Values

UNW_ENOMEM

public static final Error UNW_ENOMEM

UNW_EBADREG_

public static final int UNW_EBADREG_
See Also:
Constant Field Values

UNW_EBADREG

public static final Error UNW_EBADREG

UNW_EREADONLYREG_

public static final int UNW_EREADONLYREG_
See Also:
Constant Field Values

UNW_EREADONLYREG

public static final Error UNW_EREADONLYREG

UNW_ESTOPUNWIND_

public static final int UNW_ESTOPUNWIND_
See Also:
Constant Field Values

UNW_ESTOPUNWIND

public static final Error UNW_ESTOPUNWIND

UNW_EINVALIDIP_

public static final int UNW_EINVALIDIP_
See Also:
Constant Field Values

UNW_EINVALIDIP

public static final Error UNW_EINVALIDIP

UNW_EBADFRAME_

public static final int UNW_EBADFRAME_
See Also:
Constant Field Values

UNW_EBADFRAME

public static final Error UNW_EBADFRAME

UNW_EINVAL_

public static final int UNW_EINVAL_
See Also:
Constant Field Values

UNW_EINVAL

public static final Error UNW_EINVAL

UNW_EBADVERSION_

public static final int UNW_EBADVERSION_
See Also:
Constant Field Values

UNW_EBADVERSION

public static final Error UNW_EBADVERSION

UNW_ENOINFO_

public static final int UNW_ENOINFO_
See Also:
Constant Field Values

UNW_ENOINFO

public static final Error UNW_ENOINFO
Method Detail

toString

public String toString()
Return the qualified name of the enum.

Overrides:
toString in class Object

toPrint

public String toPrint()
Return a printable version of the enum.


toName

public String toName()
Return the name of just the enum.


equals

public boolean equals(Object o)
Return true if OBJECT has the same value.

Overrides:
equals in class Object

hashCode

public int hashCode()
Overrides:
hashCode in class Object

compareTo

public int compareTo(Object o)
Specified by:
compareTo in interface Comparable

valueOf

public static Error valueOf(String string)
Return the Error object that matches the string.


valueOf

public static Error valueOf(long i)
Return the Error object that matches the integer.


values

public static Error[] values()
Return an array of all the Error elements.


toString

public static String toString(long i)
Returns the full underscore delimited name of the field corresponding to the value I.


toPrintString

public static String toPrintString(long i)
Returns the printable (or user readable) name for the field corresponding to the value I.


toPrintString

public static String toPrintString(long i,
                                   String def)
Returns the printable (or user readable) name for the field corresponding to the value I, or DEF is there is no such field.


toName

public static String toName(long i)
Returns just the name part of the num corresponding to I.


toName

public static String toName(long i,
                            String def)
Returns just the name part of the num corresponding to I, or DEF is there is no such field.


intValue

public int intValue()
Return the equivalent of the enum.

Specified by:
intValue in class Number

longValue

public long longValue()
Return the equivalent of the enum.

Specified by:
longValue in class Number

floatValue

public float floatValue()
Return the equivalent of the enum.

Specified by:
floatValue in class Number

doubleValue

public double doubleValue()
Return the equivalent of the enum.

Specified by:
doubleValue in class Number