Enum Class EffectiveFinalityType

java.lang.Object
java.lang.Enum<EffectiveFinalityType>
com.pnfsoftware.jeb.core.units.code.android.EffectiveFinalityType
All Implemented Interfaces:
Serializable, Comparable<EffectiveFinalityType>, Constable

public enum EffectiveFinalityType extends Enum<EffectiveFinalityType>
Define the effective finality of a Dex field.
See Also:
  • Enum Constant Details

    • NON_FINAL

      public static final EffectiveFinalityType NON_FINAL
      Non-final, i.e. written multiple times to potentially different values.
    • ALMOST_FINAL

      public static final EffectiveFinalityType ALMOST_FINAL
      Written once outside the constructor or written multiple times to a value determined to be the same.
    • FINAL

      public static final EffectiveFinalityType FINAL
      Explicitly final (has the final keyword) or effectively final (does not have the final keyword, initialized only once in the constructor), and does not appear to be modified by reflection.
    • UNKNOWN

      public static final EffectiveFinalityType UNKNOWN
      The effective finality is unknown.
  • Method Details

    • values

      public static EffectiveFinalityType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static EffectiveFinalityType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • isFinalLike

      public boolean isFinalLike()