com.joanju.cg.core
Enum UnresolvedProcedure

java.lang.Object
  extended by java.lang.Enum<UnresolvedProcedure>
      extended by com.joanju.cg.core.UnresolvedProcedure
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<UnresolvedProcedure>

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


Enum Constant Summary
SOURCE_NOT_FOUND
          Resolved, but no source code found on propath.
UNRESOLVED_HANDLE
           
UNRESOLVED_NAME
           
UNRESOLVED_SIMPLE
          Unresolved name for simple call.
 
Method Summary
 java.lang.String getDescription()
           
 ProcedureInstr getInstr()
           
static UnresolvedProcedure lookup(int address)
           
static UnresolvedProcedure lookupMatching(ProcedureInstr proc)
           
static UnresolvedProcedure valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static UnresolvedProcedure[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNRESOLVED_SIMPLE

public static final UnresolvedProcedure UNRESOLVED_SIMPLE
Unresolved name for simple call.


UNRESOLVED_NAME

public static final UnresolvedProcedure UNRESOLVED_NAME

UNRESOLVED_HANDLE

public static final UnresolvedProcedure UNRESOLVED_HANDLE

SOURCE_NOT_FOUND

public static final UnresolvedProcedure SOURCE_NOT_FOUND
Resolved, but no source code found on propath.

Method Detail

values

public static final UnresolvedProcedure[] values()
Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants as follows:
for(UnresolvedProcedure c : UnresolvedProcedure.values())
        System.out.println(c);

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

valueOf

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

getDescription

public java.lang.String getDescription()

getInstr

public ProcedureInstr getInstr()

lookup

public static UnresolvedProcedure lookup(int address)

lookupMatching

public static UnresolvedProcedure lookupMatching(ProcedureInstr proc)


Copyright © 2008 Joanju Software. All Rights Reserved.