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
Define the effective finality of a Dex field.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionWritten once outside the constructor or written multiple times to a value determined to be the same.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.Non-final, i.e.The effective finality is unknown. -
Method Summary
Modifier and TypeMethodDescriptionboolean
static EffectiveFinalityType
Returns the enum constant of this class with the specified name.static EffectiveFinalityType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NON_FINAL
Non-final, i.e. written multiple times to potentially different values. -
ALMOST_FINAL
Written once outside the constructor or written multiple times to a value determined to be the same. -
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
The effective finality is unknown.
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
isFinalLike
public boolean isFinalLike()
-