com.android.dx.dex.code
Enum LocalList.Disposition

java.lang.Object
  extended by java.lang.Enum<LocalList.Disposition>
      extended by com.android.dx.dex.code.LocalList.Disposition
All Implemented Interfaces:
Serializable, Comparable<LocalList.Disposition>
Enclosing class:
LocalList

public static enum LocalList.Disposition
extends Enum<LocalList.Disposition>

Disposition of a local entry.


Enum Constant Summary
END_CLOBBERED_BY_NEXT
          local ended because the next local clobbered this one (because this one is a category-2)
END_CLOBBERED_BY_PREV
          local ended because the previous local clobbered this one (because it is category-2)
END_MOVED
          local ended because it was moved to a different register
END_REPLACED
          local ended because it was directly replaced
END_SIMPLY
          local ended without being replaced
START
          local started (introduced)
 
Method Summary
static LocalList.Disposition valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LocalList.Disposition[] 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

START

public static final LocalList.Disposition START
local started (introduced)


END_SIMPLY

public static final LocalList.Disposition END_SIMPLY
local ended without being replaced


END_REPLACED

public static final LocalList.Disposition END_REPLACED
local ended because it was directly replaced


END_MOVED

public static final LocalList.Disposition END_MOVED
local ended because it was moved to a different register


END_CLOBBERED_BY_PREV

public static final LocalList.Disposition END_CLOBBERED_BY_PREV
local ended because the previous local clobbered this one (because it is category-2)


END_CLOBBERED_BY_NEXT

public static final LocalList.Disposition END_CLOBBERED_BY_NEXT
local ended because the next local clobbered this one (because this one is a category-2)

Method Detail

values

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

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

valueOf

public static LocalList.Disposition valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012. All Rights Reserved.